/* stylelint-disable order/properties-alphabetical-order */
/* stylelint-enable */
/* --------------------------------------------------------------- */
/* LAYOUT VARIABLES */
/*
USAGE

h1 {
  $map: (576px: 22px, 768px: 24px, 992px: 34px);
  @include poly-fluid-sizing('font-size', $map);
  color: #e95c33;
}

*/
.clearfix {
  content: "";
  display: table;
  table-layout: fixed;
  clear: both; }

.abs-full {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px; }

@media (max-width: 767px) and (orientation: portrait), (max-width: 1024px) and (orientation: landscape) {
  .hide-for-mobile-and-landscape {
    display: none !important;
    visibility: hidden; } }

@media (min-width: 768px) and (orientation: portrait), (min-width: 1025px) and (orientation: landscape) {
  .show-for-mobile-and-landscape {
    display: none !important;
    visibility: hidden; } }

@media (max-width: 567px) {
  .hide-for-mobile-portrait {
    display: none !important;
    visibility: hidden; } }

@media (min-width: 568px) {
  .show-for-mobile-portrait {
    display: none !important;
    visibility: hidden; } }

@media (max-width: 767px) {
  .hide-for-mobile {
    display: none !important;
    visibility: hidden; } }

@media (min-width: 768px) {
  .show-for-mobile {
    display: none !important;
    visibility: hidden; } }

@media (min-width: 1025px) {
  .hide-for-desktop {
    display: none !important;
    visibility: hidden; } }

@media (max-width: 1024px) {
  .show-for-desktop {
    display: none !important;
    visibility: hidden; } }

.scroll {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

.noscroll {
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: hidden; }

.visually-hidden {
  display: none;
  visibility: hidden;
  pointer-events: none; }

/* @include transition(all,2s,ease-out); */
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
main,
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
@font-face {
  font-family: "SGA";
  src: url("../fonts/SuperGroteskA-RgLF.eot?#iefix") format("embedded-opentype"), url("../fonts/SuperGroteskA-RgLF.woff") format("woff"), url("../fonts/SuperGroteskA-RgLF.ttf") format("truetype"), url("../fonts/SuperGroteskA-RgLF.svg#SGA") format("svg"); }

@font-face {
  font-family: "LNR";
  src: url("../fonts/LeituraNews-Roman1.eot?#iefix") format("embedded-opentype"), url("../fonts/LeituraNews-Roman1.woff") format("woff"), url("../fonts/LeituraNews-Roman1.ttf") format("truetype"), url("../fonts/LeituraNews-Roman1.svg#LNR") format("svg"); }

.notice {
  color: #A86B36; }

.body-text-overlay {
  font-family: 'LNR';
  font-size: 16px;
  line-height: 22px; }
  @media (min-width: 767px) {
    .body-text-overlay {
      font-size: calc(0.7898894155vw + 9.9415481833px); } }
  @media (min-width: 1400px) {
    .body-text-overlay {
      font-size: 21px; } }
  @media (min-width: 767px) {
    .body-text-overlay {
      line-height: calc(0.9478672986vw + 14.7298578199px); } }
  @media (min-width: 1400px) {
    .body-text-overlay {
      line-height: 28px; } }

.body-text {
  font-family: 'LNR';
  font-size: 16px;
  line-height: 26px; }
  @media (min-width: 767px) {
    .body-text {
      font-size: calc(1.2638230648vw + 6.3064770932px); } }
  @media (min-width: 1400px) {
    .body-text {
      font-size: 24px; } }
  @media (min-width: 767px) {
    .body-text {
      line-height: calc(0.9478672986vw + 18.7298578199px); } }
  @media (min-width: 1400px) {
    .body-text {
      line-height: 32px; } }

.body-text-large {
  font-family: 'LNR';
  font-size: 18px;
  line-height: 26px; }
  @media (min-width: 767px) {
    .body-text-large {
      font-size: calc(1.2638230648vw + 8.3064770932px); } }
  @media (min-width: 1400px) {
    .body-text-large {
      font-size: 26px; } }
  @media (min-width: 767px) {
    .body-text-large {
      line-height: calc(1.579778831vw + 13.8830963665px); } }
  @media (min-width: 1400px) {
    .body-text-large {
      line-height: 36px; } }

.quote-text {
  font-family: 'LNR';
  font-size: 16px;
  line-height: 24px; }
  @media (min-width: 767px) {
    .quote-text {
      font-size: calc(0.3159557662vw + 13.5766192733px); } }
  @media (min-width: 1400px) {
    .quote-text {
      font-size: 18px; } }
  @media (min-width: 767px) {
    .quote-text {
      line-height: calc(0.6319115324vw + 19.1532385466px); } }
  @media (min-width: 1400px) {
    .quote-text {
      line-height: 28px; } }

.small-caps {
  font-size: 12px;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 2px; }
  @media (min-width: 767px) {
    .small-caps {
      font-size: calc(0vw + 12px); } }
  @media (min-width: 1400px) {
    .small-caps {
      font-size: 12px; } }
  @media (min-width: 767px) {
    .small-caps {
      line-height: calc(0.3159557662vw + 23.5766192733px); } }
  @media (min-width: 1400px) {
    .small-caps {
      line-height: 28px; } }

.text-20 {
  font-size: 18px;
  line-height: 24px; }
  @media (min-width: 767px) {
    .text-20 {
      font-size: calc(0.3159557662vw + 15.5766192733px); } }
  @media (min-width: 1400px) {
    .text-20 {
      font-size: 20px; } }
  @media (min-width: 767px) {
    .text-20 {
      line-height: calc(0.6319115324vw + 19.1532385466px); } }
  @media (min-width: 1400px) {
    .text-20 {
      line-height: 28px; } }

h1 {
  font-size: 32px;
  line-height: 36px; }
  @media (min-width: 767px) {
    h1 {
      font-size: calc(1.579778831vw + 19.8830963665px); } }
  @media (min-width: 1400px) {
    h1 {
      font-size: 42px; } }
  @media (min-width: 767px) {
    h1 {
      line-height: calc(1.8957345972vw + 21.4597156398px); } }
  @media (min-width: 1400px) {
    h1 {
      line-height: 48px; } }
  h1.small {
    font-size: 18px;
    line-height: 24px; }
    @media (min-width: 767px) {
      h1.small {
        font-size: calc(0.9478672986vw + 10.7298578199px); } }
    @media (min-width: 1400px) {
      h1.small {
        font-size: 24px; } }
    @media (min-width: 767px) {
      h1.small {
        line-height: calc(1.8957345972vw + 9.4597156398px); } }
    @media (min-width: 1400px) {
      h1.small {
        line-height: 36px; } }

h2 {
  font-size: 21px;
  line-height: 28px; }
  @media (min-width: 767px) {
    h2 {
      font-size: calc(0.7898894155vw + 14.9415481833px); } }
  @media (min-width: 1400px) {
    h2 {
      font-size: 26px; } }
  @media (min-width: 767px) {
    h2 {
      line-height: calc(1.2638230648vw + 18.3064770932px); } }
  @media (min-width: 1400px) {
    h2 {
      line-height: 36px; } }
  h2.quote-title {
    font-family: 'LNR'; }

h4 {
  font-size: 18px;
  line-height: 24px; }
  @media (min-width: 767px) {
    h4 {
      font-size: calc(0.9478672986vw + 10.7298578199px); } }
  @media (min-width: 1400px) {
    h4 {
      font-size: 24px; } }
  @media (min-width: 767px) {
    h4 {
      line-height: calc(1.8957345972vw + 9.4597156398px); } }
  @media (min-width: 1400px) {
    h4 {
      line-height: 36px; } }

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

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

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

.text-dark {
  color: #333230 !important; }
  .text-dark A {
    color: inherit; }

.text-gray {
  color: #999 !important; }
  .text-gray A {
    color: inherit; }

BODY,
BUTTON,
INPUT,
SELECT,
OPTGROUP,
TEXTAREA {
  font-family: 'SGA';
  color: #333230;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

P {
  margin-bottom: 20px; }

DFN, CITE, EM, I {
  font-style: italic; }

H1, H2, H3, H4, H5, H6 {
  clear: both;
  font-family: 'SGA', sans-serif;
  font-weight: normal;
  margin: 0; }

BLOCKQUOTE {
  text-align: center;
  max-width: 1020px;
  margin: 0 auto;
  font-size: 21px;
  line-height: 23px; }
  @media (min-width: 767px) {
    BLOCKQUOTE {
      font-size: calc(2.3255813953vw + 3.1627906977px); } }
  @media (min-width: 1025px) {
    BLOCKQUOTE {
      font-size: 27px; } }
  @media (min-width: 767px) {
    BLOCKQUOTE {
      line-height: calc(4.6511627907vw - 12.6744186047px); } }
  @media (min-width: 1025px) {
    BLOCKQUOTE {
      line-height: 35px; } }
  BLOCKQUOTE CITE {
    font-size: 14px;
    line-height: 18px;
    margin: 10px;
    font-style: normal;
    color: #999;
    display: block;
    font-style: normal; }
    @media (min-width: 767px) {
      BLOCKQUOTE CITE {
        font-size: calc(0.7751937984vw + 8.0542635659px); } }
    @media (min-width: 1025px) {
      BLOCKQUOTE CITE {
        font-size: 16px; } }
    @media (min-width: 767px) {
      BLOCKQUOTE CITE {
        line-height: calc(1.1627906977vw + 9.0813953488px); } }
    @media (min-width: 1025px) {
      BLOCKQUOTE CITE {
        line-height: 21px; } }
    @media (min-width: 767px) {
      BLOCKQUOTE CITE {
        margin: calc(3.8759689922vw - 19.7286821705px); } }
    @media (min-width: 1025px) {
      BLOCKQUOTE CITE {
        margin: 20px; } }

.skip-p > p:first-child {
  margin-top: 0px; }

.strip-p > p:first-child {
  margin: 0px; }

.wysiwyg,
.mce-content-body {
  color: #333230; }
  .wysiwyg H2,
  .wysiwyg H3,
  .wysiwyg H4,
  .wysiwyg H5,
  .wysiwyg P,
  .wysiwyg UL,
  .wysiwyg OL,
  .wysiwyg BLOCKQUOTE,
  .mce-content-body H2,
  .mce-content-body H3,
  .mce-content-body H4,
  .mce-content-body H5,
  .mce-content-body P,
  .mce-content-body UL,
  .mce-content-body OL,
  .mce-content-body BLOCKQUOTE {
    margin-top: 20px;
    margin-bottom: 20px; }
  .wysiwyg P.caption,
  .mce-content-body P.caption {
    color: #999; }
  .wysiwyg A:not(.button),
  .mce-content-body A:not(.button) {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: inherit; }
    .wysiwyg A:not(.button):hover,
    .mce-content-body A:not(.button):hover {
      text-decoration: underline;
      cursor: pointer; }
  .wysiwyg A.button,
  .mce-content-body A.button {
    text-decoration: none;
    margin-right: 10px; }
  .wysiwyg UL,
  .mce-content-body UL {
    margin-left: 40px;
    list-style: none;
    padding-left: 0;
    max-width: 90%; }
    .wysiwyg UL LI,
    .mce-content-body UL LI {
      list-style-type: disc;
      position: relative; }
  .wysiwyg OL,
  .mce-content-body OL {
    list-style-type: decimal;
    padding-left: 0;
    max-width: 90%;
    margin-left: 40px; }

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
HTML {
  box-sizing: border-box; }

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit; }

HR {
  border: 0;
  margin: 0;
  height: 1px;
  border-top: 1px solid #CDCDCD; }

IMG {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */ }

FIGURE {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */ }

/* Make sure embeds and iframes fit their containers. */
EMBED,
IFRAME,
OBJECT {
  max-width: 100%; }

ul, ol {
  margin: 0 0 1.5em 3em; }

ul {
  list-style: disc; }

ol {
  list-style: decimal; }

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em; }

DL DT {
  color: #333230; }

DL DD {
  margin: 0 0 20px 0;
  color: #999; }

ul.list-sidebar {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border-top: 1px solid #CDCDCD;
  margin-bottom: 20px; }
  ul.list-sidebar LI {
    border-bottom: 1px solid #CDCDCD; }
  ul.list-sidebar A {
    display: block;
    padding: 20px 0;
    color: #999; }
    ul.list-sidebar A:hover {
      color: #333230; }
    ul.list-sidebar A.current {
      background-image: url(../img/arrow_next_slim.png);
      background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url(../img/arrow_next_slim.svg);
      background-image: linear-gradient(transparent, transparent), url(../img/arrow_next_slim.svg);
      background-repeat: no-repeat;
      background-size: contain;
      color: #333230;
      background-size: 6px auto;
      background-position: right 0 center; }
      ul.list-sidebar A.current .ie9 {
        background-image: url(../img/arrow_next_slim.png); }

ul.horizontal {
  margin: 0;
  padding: 0;
  list-style-type: none; }
  ul.horizontal > li {
    display: inline-block;
    margin-right: 2em; }
    ul.horizontal > li:last-child {
      margin-right: 0 !important; }

UL.menu.socials,
UL.socials {
  margin: 0;
  padding: 0; }
  UL.menu.socials svg,
  UL.socials svg {
    display: inline-block;
    vertical-align: center;
    width: 30px;
    height: auto; }
  UL.menu.socials li,
  UL.socials li {
    display: inline-block;
    margin-right: 20px; }
    UL.menu.socials li:last-child,
    UL.socials li:last-child {
      margin-right: 0px; }
  UL.menu.socials A,
  UL.socials A {
    DISPLAY: BLOCK;
    opacity: 0.9; }
    UL.menu.socials A:hover,
    UL.socials A:hover {
      opacity: 1; }
  @media (min-width: 1025px) {
    UL.menu.socials SVG,
    UL.socials SVG {
      width: 24px; } }

table {
  margin: 0 0 1.5em;
  width: 100%; }

.table-center, .table-half, .table-ver, .table-wrap {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%; }

.table-col, .table-half .table-col {
  display: table-cell;
  vertical-align: middle;
  height: 100%; }

.table-half .table-col {
  width: 50%; }
  .table-half .table-col:first-child {
    padding-right: 10px; }
    @media (min-width: 768px) {
      .table-half .table-col:first-child {
        padding-right: 15px; } }
  .table-half .table-col:last-child {
    padding-left: 10px; }
    @media (min-width: 768px) {
      .table-half .table-col:last-child {
        padding-left: 15px; } }
  .table-half .vertical-align-top.table-col {
    vertical-align: top; }

@media (min-width: 768px) {
  .table-2-not-mobile {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .table-2-not-mobile .col {
      display: table-cell;
      width: 50%; }
    .table-2-not-mobile.v-align .col {
      vertical-align: middle; } }

@media (min-width: 768px) {
  .table-2-not-mobile.with-paddings .col:first-child {
    padding-right: 15px; } }

@media (min-width: 768px) {
  .table-2-not-mobile.with-paddings .col:last-child {
    padding-left: 15px; } }

.table-ver .table-row {
  display: table-row;
  position: relative; }

@media (min-width: 568px) {
  .table-2-not-mobile-but-landscape {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .table-2-not-mobile-but-landscape .col {
      display: table-cell;
      width: 50%; } }

@media (min-width: 568px) {
  .table-2-not-mobile-but-landscape.with-paddings .col:first-child {
    padding-right: 15px; } }

@media (min-width: 568px) {
  .table-2-not-mobile-but-landscape.with-paddings .col:last-child {
    padding-left: 15px; } }

@media (min-width: 1025px) {
  .table-2-not-tablet {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .table-2-not-tablet .col {
      display: table-cell;
      width: 50%; }
    .table-2-not-tablet.v-align .col {
      vertical-align: middle; } }

@media (min-width: 1025px) {
  .table-2-not-tablet.with-paddings .col:first-child {
    padding-right: 15px; } }

@media (min-width: 1025px) {
  .table-2-not-tablet.with-paddings .col:last-child {
    padding-left: 15px; } }

.table-3 {
  display: table;
  table-layout: fixed;
  width: 100%; }
  .table-3 .col {
    display: table-cell;
    vertical-align: middle;
    width: 33.3%;
    height: 100%; }
    .table-3 .col.vertical-align-top {
      vertical-align: top; }

.table-3-not-mobile.spread {
  text-align: center; }

@media (min-width: 480px) {
  .table-3-not-mobile {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .table-3-not-mobile .col {
      display: table-cell;
      vertical-align: middle;
      width: 33.3%;
      height: 100%; }
    .table-3-not-mobile.spread .col:first-child {
      text-align: left; }
    .table-3-not-mobile.spread .col:last-child {
      text-align: right; }
    .table-3-not-mobile.spread .col.vertical-align-top {
      vertical-align: top; } }

BODY.is-development:before {
  content: 'Breakpoint: Default';
  line-height: 17px;
  position: fixed;
  top: 1px;
  letter-spacing: 0;
  width: 160px;
  text-align: center;
  color: white;
  font-size: 10px;
  font-family: Arial;
  padding: 0 10px 1px 10px;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  border-radius: 11px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  font-weight: bold;
  /* Left */
  /* Center */
  left: 50%;
  margin-left: -80px;
  /* Sizes */ }
  @media (max-width: 767px) {
    BODY.is-development:before {
      content: 'Breakpoint: Mobile'; } }
  @media (min-width: 768px) and (max-width: 1025px) {
    BODY.is-development:before {
      content: 'Breakpoint: Tablet'; } }
  @media (min-width: 1025px) {
    BODY.is-development:before {
      content: 'Breakpoint: Desktop'; } }
  @media (min-width: 1400px) {
    BODY.is-development:before {
      content: 'Breakpoint: Desktop (LG)'; } }
  @media (min-width: 1800px) {
    BODY.is-development:before {
      content: 'Breakpoint: Desktop (XL)'; } }

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
BUTTON,
INPUT[type="button"],
INPUT[type="reset"],
INPUT[type="submit"],
.button {
  border: 1px solid #999;
  background-color: transparent;
  border-radius: 0px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 49px;
  height: 50px;
  padding: 0px 40px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  cursor: pointer;
  display: inline-block;
  color: #333230;
  font-family: 'NH-Text-55', 'Helvetica', 'Arial', sans-serif;
  letter-spacing: 0.33px;
  font-size: 14px; }
  @media (min-width: 767px) {
    BUTTON,
    INPUT[type="button"],
    INPUT[type="reset"],
    INPUT[type="submit"],
    .button {
      font-size: calc(0.7751937984vw + 8.0542635659px); } }
  @media (min-width: 1025px) {
    BUTTON,
    INPUT[type="button"],
    INPUT[type="reset"],
    INPUT[type="submit"],
    .button {
      font-size: 16px; } }
  BUTTON:hover,
  INPUT[type="button"]:hover,
  INPUT[type="reset"]:hover,
  INPUT[type="submit"]:hover,
  .button:hover {
    background-color: #999;
    color: #fff;
    border-color: #999; }
  BUTTON:active, BUTTON:focus,
  INPUT[type="button"]:active,
  INPUT[type="button"]:focus,
  INPUT[type="reset"]:active,
  INPUT[type="reset"]:focus,
  INPUT[type="submit"]:active,
  INPUT[type="submit"]:focus,
  .button:active,
  .button:focus {
    border-color: #333230; }
  BUTTON.small,
  INPUT[type="button"].small,
  INPUT[type="reset"].small,
  INPUT[type="submit"].small,
  .button.small {
    line-height: 39px;
    height: 40px;
    padding: 0px 20px; }
  BUTTON.dark,
  INPUT[type="button"].dark,
  INPUT[type="reset"].dark,
  INPUT[type="submit"].dark,
  .button.dark {
    background-color: #999;
    color: #fff;
    border-color: #999; }
    BUTTON.dark:hover,
    INPUT[type="button"].dark:hover,
    INPUT[type="reset"].dark:hover,
    INPUT[type="submit"].dark:hover,
    .button.dark:hover {
      background-color: transparent;
      border-color: #999;
      color: #999; }
  BUTTON.black,
  INPUT[type="button"].black,
  INPUT[type="reset"].black,
  INPUT[type="submit"].black,
  .button.black {
    background-color: #000;
    color: #fff;
    border-color: #000; }
    BUTTON.black:hover,
    INPUT[type="button"].black:hover,
    INPUT[type="reset"].black:hover,
    INPUT[type="submit"].black:hover,
    .button.black:hover {
      background-color: transparent;
      border-color: #000;
      color: #000; }
  BUTTON.white,
  INPUT[type="button"].white,
  INPUT[type="reset"].white,
  INPUT[type="submit"].white,
  .button.white {
    color: #fff;
    border-color: #fff; }
    BUTTON.white:hover,
    INPUT[type="button"].white:hover,
    INPUT[type="reset"].white:hover,
    INPUT[type="submit"].white:hover,
    .button.white:hover {
      background-color: #fff;
      color: #000; }
  BUTTON.wide,
  INPUT[type="button"].wide,
  INPUT[type="reset"].wide,
  INPUT[type="submit"].wide,
  .button.wide {
    padding: 0px 80px; }

INPUT[type="text"],
INPUT[type="email"],
INPUT[type="url"],
INPUT[type="password"],
INPUT[type="search"],
INPUT[type="number"],
INPUT[type="tel"],
INPUT[type="range"],
INPUT[type="date"],
INPUT[type="month"],
INPUT[type="week"],
INPUT[type="time"],
INPUT[type="datetime"],
INPUT[type="datetime-local"],
INPUT[type="color"],
TEXTAREA,
SELECT {
  outline: none;
  box-shadow: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  color: #333230;
  border: 1px solid #F2F2F2;
  background-color: #F2F2F2;
  border-radius: 0px; }
  INPUT[type="text"]:focus,
  INPUT[type="email"]:focus,
  INPUT[type="url"]:focus,
  INPUT[type="password"]:focus,
  INPUT[type="search"]:focus,
  INPUT[type="number"]:focus,
  INPUT[type="tel"]:focus,
  INPUT[type="range"]:focus,
  INPUT[type="date"]:focus,
  INPUT[type="month"]:focus,
  INPUT[type="week"]:focus,
  INPUT[type="time"]:focus,
  INPUT[type="datetime"]:focus,
  INPUT[type="datetime-local"]:focus,
  INPUT[type="color"]:focus,
  TEXTAREA:focus,
  SELECT:focus {
    color: #333230; }
  INPUT[type="text"]::-webkit-input-placeholder,
  INPUT[type="email"]::-webkit-input-placeholder,
  INPUT[type="url"]::-webkit-input-placeholder,
  INPUT[type="password"]::-webkit-input-placeholder,
  INPUT[type="search"]::-webkit-input-placeholder,
  INPUT[type="number"]::-webkit-input-placeholder,
  INPUT[type="tel"]::-webkit-input-placeholder,
  INPUT[type="range"]::-webkit-input-placeholder,
  INPUT[type="date"]::-webkit-input-placeholder,
  INPUT[type="month"]::-webkit-input-placeholder,
  INPUT[type="week"]::-webkit-input-placeholder,
  INPUT[type="time"]::-webkit-input-placeholder,
  INPUT[type="datetime"]::-webkit-input-placeholder,
  INPUT[type="datetime-local"]::-webkit-input-placeholder,
  INPUT[type="color"]::-webkit-input-placeholder,
  TEXTAREA::-webkit-input-placeholder,
  SELECT::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #999; }
  INPUT[type="text"]:-moz-placeholder,
  INPUT[type="email"]:-moz-placeholder,
  INPUT[type="url"]:-moz-placeholder,
  INPUT[type="password"]:-moz-placeholder,
  INPUT[type="search"]:-moz-placeholder,
  INPUT[type="number"]:-moz-placeholder,
  INPUT[type="tel"]:-moz-placeholder,
  INPUT[type="range"]:-moz-placeholder,
  INPUT[type="date"]:-moz-placeholder,
  INPUT[type="month"]:-moz-placeholder,
  INPUT[type="week"]:-moz-placeholder,
  INPUT[type="time"]:-moz-placeholder,
  INPUT[type="datetime"]:-moz-placeholder,
  INPUT[type="datetime-local"]:-moz-placeholder,
  INPUT[type="color"]:-moz-placeholder,
  TEXTAREA:-moz-placeholder,
  SELECT:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #999; }
  INPUT[type="text"]::-moz-placeholder,
  INPUT[type="email"]::-moz-placeholder,
  INPUT[type="url"]::-moz-placeholder,
  INPUT[type="password"]::-moz-placeholder,
  INPUT[type="search"]::-moz-placeholder,
  INPUT[type="number"]::-moz-placeholder,
  INPUT[type="tel"]::-moz-placeholder,
  INPUT[type="range"]::-moz-placeholder,
  INPUT[type="date"]::-moz-placeholder,
  INPUT[type="month"]::-moz-placeholder,
  INPUT[type="week"]::-moz-placeholder,
  INPUT[type="time"]::-moz-placeholder,
  INPUT[type="datetime"]::-moz-placeholder,
  INPUT[type="datetime-local"]::-moz-placeholder,
  INPUT[type="color"]::-moz-placeholder,
  TEXTAREA::-moz-placeholder,
  SELECT::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #999; }
  INPUT[type="text"]:-ms-input-placeholder,
  INPUT[type="email"]:-ms-input-placeholder,
  INPUT[type="url"]:-ms-input-placeholder,
  INPUT[type="password"]:-ms-input-placeholder,
  INPUT[type="search"]:-ms-input-placeholder,
  INPUT[type="number"]:-ms-input-placeholder,
  INPUT[type="tel"]:-ms-input-placeholder,
  INPUT[type="range"]:-ms-input-placeholder,
  INPUT[type="date"]:-ms-input-placeholder,
  INPUT[type="month"]:-ms-input-placeholder,
  INPUT[type="week"]:-ms-input-placeholder,
  INPUT[type="time"]:-ms-input-placeholder,
  INPUT[type="datetime"]:-ms-input-placeholder,
  INPUT[type="datetime-local"]:-ms-input-placeholder,
  INPUT[type="color"]:-ms-input-placeholder,
  TEXTAREA:-ms-input-placeholder,
  SELECT:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #999; }

INPUT[type="text"],
INPUT[type="email"],
INPUT[type="url"],
INPUT[type="password"],
INPUT[type="search"],
INPUT[type="number"],
INPUT[type="tel"],
INPUT[type="range"],
INPUT[type="date"],
INPUT[type="month"],
INPUT[type="week"],
INPUT[type="time"],
INPUT[type="datetime"],
INPUT[type="datetime-local"],
INPUT[type="color"],
TEXTAREA {
  padding: 0px;
  font-size: 14px;
  height: 42px;
  line-height: 40px;
  padding: 0px 10px;
  font-family: 'NH-Text-55', 'Helvetica', 'Arial', sans-serif;
  font-size: 14px;
  line-height: 20px;
  position: relative; }
  @media (min-width: 767px) {
    INPUT[type="text"],
    INPUT[type="email"],
    INPUT[type="url"],
    INPUT[type="password"],
    INPUT[type="search"],
    INPUT[type="number"],
    INPUT[type="tel"],
    INPUT[type="range"],
    INPUT[type="date"],
    INPUT[type="month"],
    INPUT[type="week"],
    INPUT[type="time"],
    INPUT[type="datetime"],
    INPUT[type="datetime-local"],
    INPUT[type="color"],
    TEXTAREA {
      font-size: calc(0.7751937984vw + 8.0542635659px); } }
  @media (min-width: 1025px) {
    INPUT[type="text"],
    INPUT[type="email"],
    INPUT[type="url"],
    INPUT[type="password"],
    INPUT[type="search"],
    INPUT[type="number"],
    INPUT[type="tel"],
    INPUT[type="range"],
    INPUT[type="date"],
    INPUT[type="month"],
    INPUT[type="week"],
    INPUT[type="time"],
    INPUT[type="datetime"],
    INPUT[type="datetime-local"],
    INPUT[type="color"],
    TEXTAREA {
      font-size: 16px; } }
  @media (min-width: 767px) {
    INPUT[type="text"],
    INPUT[type="email"],
    INPUT[type="url"],
    INPUT[type="password"],
    INPUT[type="search"],
    INPUT[type="number"],
    INPUT[type="tel"],
    INPUT[type="range"],
    INPUT[type="date"],
    INPUT[type="month"],
    INPUT[type="week"],
    INPUT[type="time"],
    INPUT[type="datetime"],
    INPUT[type="datetime-local"],
    INPUT[type="color"],
    TEXTAREA {
      line-height: calc(0.7751937984vw + 14.0542635659px); } }
  @media (min-width: 1025px) {
    INPUT[type="text"],
    INPUT[type="email"],
    INPUT[type="url"],
    INPUT[type="password"],
    INPUT[type="search"],
    INPUT[type="number"],
    INPUT[type="tel"],
    INPUT[type="range"],
    INPUT[type="date"],
    INPUT[type="month"],
    INPUT[type="week"],
    INPUT[type="time"],
    INPUT[type="datetime"],
    INPUT[type="datetime-local"],
    INPUT[type="color"],
    TEXTAREA {
      line-height: 22px; } }
  INPUT[type="text"].search,
  INPUT[type="email"].search,
  INPUT[type="url"].search,
  INPUT[type="password"].search,
  INPUT[type="search"].search,
  INPUT[type="number"].search,
  INPUT[type="tel"].search,
  INPUT[type="range"].search,
  INPUT[type="date"].search,
  INPUT[type="month"].search,
  INPUT[type="week"].search,
  INPUT[type="time"].search,
  INPUT[type="datetime"].search,
  INPUT[type="datetime-local"].search,
  INPUT[type="color"].search,
  TEXTAREA.search {
    background-image: url(../img/icon_search.png);
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url(../img/icon_search.svg);
    background-image: linear-gradient(transparent, transparent), url(../img/icon_search.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 16px auto;
    background-position: right 15px center;
    padding-right: 50px; }
    INPUT[type="text"].search .ie9,
    INPUT[type="email"].search .ie9,
    INPUT[type="url"].search .ie9,
    INPUT[type="password"].search .ie9,
    INPUT[type="search"].search .ie9,
    INPUT[type="number"].search .ie9,
    INPUT[type="tel"].search .ie9,
    INPUT[type="range"].search .ie9,
    INPUT[type="date"].search .ie9,
    INPUT[type="month"].search .ie9,
    INPUT[type="week"].search .ie9,
    INPUT[type="time"].search .ie9,
    INPUT[type="datetime"].search .ie9,
    INPUT[type="datetime-local"].search .ie9,
    INPUT[type="color"].search .ie9,
    TEXTAREA.search .ie9 {
      background-image: url(../img/icon_search.png); }

SELECT {
  outline: none;
  box-shadow: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: auto;
  background-image: url(../img/arrow-select.png);
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url(../img/arrow-select.svg);
  background-image: linear-gradient(transparent, transparent), url(../img/arrow-select.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 8px auto;
  background-position: right 15px center;
  background-color: transparent;
  /*
    text-transform: uppercase;
    letter-spacing: 2.25px;
    @include poly-fluid-sizing('font-size', ($breakpoint-mobile: 10px, $breakpoint-desktop: 12px));
    line-height: 13px;
    padding: 12px 60px 10px 60px;
    */
  font-size: 16px;
  border: 1px solid #888888;
  cursor: pointer;
  color: #999;
  padding: 8px 80px 8px 15px; }
  SELECT .ie9 {
    background-image: url(../img/arrow-select.png); }
  @media (min-width: 767px) {
    SELECT {
      font-size: calc(0.7751937984vw + 10.0542635659px); } }
  @media (min-width: 1025px) {
    SELECT {
      font-size: 18px; } }
  SELECT:hover {
    border-color: #000; }
  SELECT OPTION,
  SELECT OPTGROUP {
    color: #000;
    font-weight: normal;
    font-style: normal;
    font-size: 14px; }
  SELECT OPTGROUP {
    color: #999; }

SELECT::-ms-expand {
  display: none; }

TEXTAREA {
  width: 100%;
  min-height: 240px;
  padding-top: 10px; }

LABEL .info {
  font-weight: bold; }

INPUT:-webkit-autofill, INPUT:-webkit-autofill:hover, INPUT:-webkit-autofill:focus, TEXTAREA:-webkit-autofill, TEXTAREA:-webkit-autofill:hover, TEXTAREA:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #F2F2F2 inset !important; }

SELECT:-webkit-autofill, SELECT:-webkit-autofill:hover, SELECT:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset !important; }

.checkbox {
  /*Hide the checkmark by default*/
  /*Unhide on the checked state*/
  /*Adding focus styles on the outer-box of the fake checkbox*/ }
  .checkbox input[type="checkbox"] {
    opacity: 0; }
  .checkbox label {
    position: relative;
    display: inline-block;
    color: #979797;
    /*12px width of fake checkbox + 6px distance between fake checkbox and text*/
    padding-left: 18px;
    /*Outer box of the fake checkbox*/
    /*Checkmark of the fake checkbox*/ }
    .checkbox label:before, .checkbox label:after {
      position: absolute;
      content: "";
      /*Needed for the line-height to take effect*/
      display: inline-block; }
    .checkbox label:before {
      height: 12px;
      width: 12px;
      border: 1px solid #979797;
      left: 0px;
      /*(24px line-height - 16px height of fake checkbox) / 2 - 1px for the border
             *to vertically center it.
             */
      top: 3px; }
    .checkbox label:after {
      /*
            height: 5px;
            width: 7px;
            border-left: 2px solid $color_option;
            border-bottom: 2px solid $color_option;
            transform: rotate(-45deg);
            left: 3px;
            top: 6px;  
            */
      top: 3px;
      width: 12px;
      height: 12px;
      background-color: #979797;
      left: 0px; }
  .checkbox input[type="checkbox"] + label::after {
    content: none; }
  .checkbox input[type="checkbox"]:checked + label::after {
    content: ""; }

form ul, .wpcf7-form ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  /*
    		.ajax-loader{
    			margin-right: -16px !important;
    		}
    		*/ }
  form ul.form > li, .wpcf7-form ul.form > li {
    position: relative;
    margin-bottom: 20px; }
    form ul.form > li:last-child, .wpcf7-form ul.form > li:last-child {
      margin-bottom: 0px; }
  form ul.double-fields, .wpcf7-form ul.double-fields {
    content: "";
    display: table;
    table-layout: fixed;
    width: 100%; }
    form ul.double-fields > li, .wpcf7-form ul.double-fields > li {
      display: inline-block;
      width: calc( 50% - 10px); }
      form ul.double-fields > li:last-child, .wpcf7-form ul.double-fields > li:last-child {
        float: right; }
      form ul.double-fields > li a, form ul.double-fields > li input, form ul.double-fields > li submit, .wpcf7-form ul.double-fields > li a, .wpcf7-form ul.double-fields > li input, .wpcf7-form ul.double-fields > li submit {
        width: 100%; }
  form ul li.center-field, .wpcf7-form ul li.center-field {
    text-align: center; }

form p:empty, .wpcf7-form p:empty {
  display: none; }

form .wpcf7-not-valid-tip, form .wpcf7-response-output, form .ajax-loader, .wpcf7-form .wpcf7-not-valid-tip, .wpcf7-form .wpcf7-response-output, .wpcf7-form .ajax-loader {
  display: none !important; }

form .wpcf7-not-valid, .wpcf7-form .wpcf7-not-valid {
  border-color: #ff0000; }

body .SumoSelect {
  width: 100%; }
  body .SumoSelect > .CaptionCont {
    border: 1px solid #CDCDCD;
    border-radius: 0px;
    padding: 0;
    padding: 15px 50px 12px 15px; }
    body .SumoSelect > .CaptionCont > span.placeholder {
      color: #999;
      font-style: normal;
      text-transform: uppercase;
      font-family: 'NH-Text-55', 'Helvetica', 'Arial', sans-serif;
      letter-spacing: 1.25px;
      line-height: 13px;
      font-size: 10px; }
      @media (min-width: 767px) {
        body .SumoSelect > .CaptionCont > span.placeholder {
          font-size: calc(0.7751937984vw + 4.0542635659px); } }
      @media (min-width: 1025px) {
        body .SumoSelect > .CaptionCont > span.placeholder {
          font-size: 12px; } }
    body .SumoSelect > .CaptionCont > label {
      width: 40px; }
      body .SumoSelect > .CaptionCont > label > i {
        background-image: url(../img/arrow_dropdown.png);
        background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url(../img/arrow_dropdown.svg);
        background-image: linear-gradient(transparent, transparent), url(../img/arrow_dropdown.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-size: 8px auto;
        opacity: 1; }
        body .SumoSelect > .CaptionCont > label > i .ie9 {
          background-image: url(../img/arrow_dropdown.png); }
  body .SumoSelect > .optWrapper > .options li.group > label, body .SumoSelect > .CaptionCont > span {
    font-weight: normal;
    color: #999;
    font-style: normal;
    text-transform: uppercase;
    font-family: 'NH-Text-55', 'Helvetica', 'Arial', sans-serif;
    letter-spacing: 1.25px;
    line-height: 13px;
    font-size: 10px; }
    @media (min-width: 767px) {
      body .SumoSelect > .optWrapper > .options li.group > label, body .SumoSelect > .CaptionCont > span {
        font-size: calc(0.7751937984vw + 4.0542635659px); } }
    @media (min-width: 1025px) {
      body .SumoSelect > .optWrapper > .options li.group > label, body .SumoSelect > .CaptionCont > span {
        font-size: 12px; } }
  body .SumoSelect > .optWrapper.multiple > .options li.opt.selected span i, body .SumoSelect .SumoSelect .select-all.selected > span i, body .SumoSelect .SumoSelect .select-all.partial > span i {
    background-color: #999; }
  body .SumoSelect:focus > .CaptionCont, body .SumoSelect .SumoSelect:hover > .CaptionCont, body .SumoSelect.open > .CaptionCont {
    box-shadow: none;
    border-color: #CDCDCD; }

.filter_bar {
  text-align: center;
  border-top: 1px solid #CDCDCD;
  padding-top: 30px;
  position: relative; }
  .filter_bar.border {
    border-bottom: 1px solid #CDCDCD;
    padding-bottom: 30px; }
  .filter_bar SELECT {
    width: 100%;
    display: inline-block;
    margin-bottom: 20px; }
    .filter_bar SELECT:last-of-type {
      margin-bottom: 0; }
  .filter_bar LABEL {
    margin: 0 10px;
    text-transform: none; }
  .filter_bar .reset {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-out;
    transition: opacity 0.4s ease-out;
    pointer-events: none;
    padding-top: 15px; }
    .filter_bar .reset.show {
      pointer-events: auto;
      opacity: 1; }
  .filter_bar .row {
    margin-top: 20px; }
    .filter_bar .row:first-of-type {
      margin-top: 0; }
  @media (min-width: 768px) {
    .filter_bar SELECT {
      width: 300px;
      display: inline-block;
      margin: 0 10px; }
      .filter_bar SELECT.small {
        width: 150px; }
    .filter_bar .reset {
      position: absolute;
      top: 41px;
      right: 0;
      padding-top: 0; } }

.filter_query_results {
  min-height: 600px; }
  .filter_query_results .loading,
  .filter_query_results .no_results {
    display: none; }
  .filter_query_results > .loading,
  .filter_query_results > .no_results {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1; }
  .filter_query_results .grid-packery > .load_more {
    width: 100% !important;
    text-align: center; }
    .filter_query_results .grid-packery > .load_more A {
      width: auto;
      display: inline-block; }

INPUT[type="checkbox"],
INPUT[type="radio"] {
  width: 18px;
  height: 18px;
  opacity: 0; }

.icheckbox,
.iradio {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 18px;
  height: 18px;
  background: url("../img/form_check.svg") no-repeat;
  border: none;
  cursor: pointer;
  position: relative;
  margin-right: 1px; }

.icheckbox {
  background-position: 0 0; }
  .icheckbox.hover {
    background-position: -20px 0; }
  .icheckbox.checked {
    background-position: -40px 0; }
  .icheckbox.disabled {
    background-position: -60px 0;
    cursor: default; }
  .icheckbox.checked.disabled {
    background-position: -80px 0; }

.iradio {
  background-position: -100px 0; }
  .iradio.hover {
    background-position: -120px 0; }
  .iradio.checked {
    background-position: -140px 0; }
  .iradio.disabled {
    background-position: -160px 0;
    cursor: default; }
  .iradio.checked.disabled {
    background-position: -180px 0; }

LABEL .iradio,
LABEL .icheckbox {
  margin-top: -1px; }

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
A {
  color: #333230;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  text-decoration: none; }
  A:visited {
    color: inherit; }
  A:hover, A:focus, A:active {
    color: #333230; }
  A:hover, A:active {
    outline: 0; }
  A.read-more {
    display: inline-block;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    font-size: 16px;
    line-height: 21px;
    padding: 6px 20px;
    margin-top: 20px;
    cursor: pointer; }
    A.read-more:hover {
      color: white;
      background-color: black;
      text-decoration: none; }
  A.with-arrow {
    padding-right: 14px;
    background-image: url(../img/button-with-arrow.png);
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url(../img/button-with-arrow.svg);
    background-image: linear-gradient(transparent, transparent), url(../img/button-with-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 9px auto;
    background-position: right 0 center; }
    A.with-arrow .ie9 {
      background-image: url(../img/button-with-arrow.png); }
  A.underline:hover {
    text-decoration: underline; }
  A.gray {
    color: #999; }
    A.gray:hover {
      color: #333230; }
  A.icon {
    color: #999;
    padding-left: 27px;
    padding-top: 4px;
    padding-bottom: 4px;
    display: inline-block;
    background-size: 22px auto !important;
    background-position: left 0 center; }
    A.icon:hover {
      color: inherit; }
    A.icon.add {
      background-image: url(../img/icon_circle_add.png);
      background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url(../img/icon_circle_add.svg);
      background-image: linear-gradient(transparent, transparent), url(../img/icon_circle_add.svg);
      background-repeat: no-repeat;
      background-size: contain; }
      A.icon.add .ie9 {
        background-image: url(../img/icon_circle_add.png); }
    A.icon.list {
      background-image: url(../img/icon_circle_list.png);
      background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url(../img/icon_circle_list.svg);
      background-image: linear-gradient(transparent, transparent), url(../img/icon_circle_list.svg);
      background-repeat: no-repeat;
      background-size: contain; }
      A.icon.list .ie9 {
        background-image: url(../img/icon_circle_list.png); }
    A.icon.download {
      background-image: url(../img/icon_circle_download.png);
      background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url(../img/icon_circle_download.svg);
      background-image: linear-gradient(transparent, transparent), url(../img/icon_circle_download.svg);
      background-repeat: no-repeat;
      background-size: contain; }
      A.icon.download .ie9 {
        background-image: url(../img/icon_circle_download.png); }
    A.icon.pop {
      background-image: url(../img/icon_circle_pop.png);
      background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url(../img/icon_circle_pop.svg);
      background-image: linear-gradient(transparent, transparent), url(../img/icon_circle_pop.svg);
      background-repeat: no-repeat;
      background-size: contain; }
      A.icon.pop .ie9 {
        background-image: url(../img/icon_circle_pop.png); }

.back-link {
  display: inline-block;
  position: relative;
  top: -10px; }
  @media (min-width: 768px) and (max-width: 1025px) {
    .back-link {
      top: -30px; } }
  @media (min-width: 1025px) {
    .back-link {
      top: -50px; } }

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
UL.menu,
.sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'SGA'; }
  UL.menu A,
  .sub-menu A {
    color: #404040; }
    UL.menu A:hover,
    .sub-menu A:hover {
      color: #000; }
  UL.menu LI.current-menu-item:not(.current-menu-parent) > A,
  UL.menu LI.selected > A,
  .sub-menu LI.current-menu-item:not(.current-menu-parent) > A,
  .sub-menu LI.selected > A {
    color: #000;
    text-decoration: underline; }
  UL.menu.secondary-menu,
  .sub-menu.secondary-menu {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2.4px; }
    UL.menu.secondary-menu li,
    .sub-menu.secondary-menu li {
      display: inline-block;
      position: relative;
      margin-right: 10px;
      font-size: 11px; }
      UL.menu.secondary-menu li:after,
      .sub-menu.secondary-menu li:after {
        content: '|';
        position: absolute;
        top: 0px; }
      UL.menu.secondary-menu li a,
      .sub-menu.secondary-menu li a {
        padding-right: 10px; }
        UL.menu.secondary-menu li a:hover,
        .sub-menu.secondary-menu li a:hover {
          text-decoration: underline; }
      @media (min-width: 768px) {
        UL.menu.secondary-menu li,
        .sub-menu.secondary-menu li {
          margin-right: 30px;
          font-size: 12px; }
          UL.menu.secondary-menu li a,
          .sub-menu.secondary-menu li a {
            padding-right: 30px; } }
      UL.menu.secondary-menu li:last-child,
      .sub-menu.secondary-menu li:last-child {
        margin-right: 0px; }
        UL.menu.secondary-menu li:last-child:after,
        .sub-menu.secondary-menu li:last-child:after {
          content: ''; }
        UL.menu.secondary-menu li:last-child a,
        .sub-menu.secondary-menu li:last-child a {
          padding-right: 0px; }

@media (max-width: 1024px) {
  UL.menu > li A {
    color: #404040; } }

@media (max-width: 1024px) {
  UL.sub-menu > li A {
    color: #404040; } }

#logo-home {
  float: left;
  position: fixed !important;
  top: 0px;
  z-index: 99; }

#main-header {
  position: absolute;
  z-index: 98;
  right: 0px;
  top: 0px; }
  #main-header #menu-wrap li {
    display: inline-block;
    margin-right: 30px;
    font-size: 20px;
    line-height: 45px; }
    @media (min-width: 1025px) {
      #main-header #menu-wrap li {
        margin-right: 50px; } }
    #main-header #menu-wrap li:last-child {
      margin-right: 0px; }
      @media (min-width: 1025px) {
        #main-header #menu-wrap li:last-child {
          margin-right: 0px; } }

html.interactive-nav #header-mobile {
  background-color: transparent; }

html.interactive-nav.menu-hide-mobile #header-mobile .inner {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0; }

#header-mobile {
  position: fixed;
  top: 0px;
  z-index: 20;
  background-color: #F5F2ED; }
  #header-mobile .inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    -webkit-transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
    transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out, -webkit-transform 0.4s ease-out; }

.header-mobile {
  width: 100%;
  height: 60px;
  position: relative;
  top: 0px; }
  .header-mobile .logo {
    position: relative;
    cursor: pointer;
    margin: 17px 0px 0px 20px;
    width: 191px;
    height: 24px; }
    .header-mobile .logo svg {
      width: 191px;
      height: 24px; }
  .header-mobile .icon {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 0px;
    top: 0px; }
    .header-mobile .icon svg {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate3d(-50%, -50%, 0);
              transform: translate3d(-50%, -50%, 0); }
      .header-mobile .icon svg #Mobile-Project-Popup-Text {
        fill: rgba(64, 64, 64, 0.45); }
      .header-mobile .icon svg #Mobile-Home {
        fill: rgba(64, 64, 64, 0.45); }

.bg-mobile {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-color: #F5F2ED;
  -webkit-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out; }

#panel-mobile {
  position: fixed;
  top: 0px;
  z-index: 21;
  background-color: #F5F2ED;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
  width: 100%;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3); }
  #panel-mobile .header-mobile {
    position: absolute; }
  #panel-mobile .notice {
    margin: 60px 0px 20px 0px;
    font-size: 16px; }
  #panel-mobile .inner {
    margin-top: 100px; }

#bg-mobile {
  position: fixed;
  top: 0px;
  z-index: 19;
  width: 100%;
  height: 100vh;
  background-color: rgba(64, 64, 64, 0.4);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease-out 0.2s;
  transition: opacity 0.4s ease-out 0.2s; }

#menu-mobile-menu {
  margin-top: 30px;
  font-size: 21px;
  line-height: 56px;
  border-top: 1px solid rgba(64, 64, 64, 0.45); }
  #menu-mobile-menu a {
    display: block; }
  #menu-mobile-menu li {
    border-bottom: 1px solid rgba(64, 64, 64, 0.45); }

.menu-open #panel-mobile, .menu-open #bg-mobile {
  visibility: visible;
  pointer-events: auto;
  opacity: 1; }

.menu-open .bg-mobile {
  opacity: 1; }

footer#footer {
  position: relative;
  background-color: #404040;
  color: #E7E6E1;
  text-align: center; }
  footer#footer a {
    color: #E7E6E1; }
    footer#footer a:hover {
      color: #E7E6E1;
      text-decoration: underline; }
  footer#footer .wrap.inner, footer#footer .inner.wrap-all, footer#footer .inner#logo-home, footer#footer #main-header .inner#menu-wrap, #main-header footer#footer .inner#menu-wrap {
    padding-top: 20px;
    padding-bottom: 20px; }
    @media (min-width: 768px) {
      footer#footer .wrap.inner, footer#footer .inner.wrap-all, footer#footer .inner#logo-home, footer#footer #main-header .inner#menu-wrap, #main-header footer#footer .inner#menu-wrap {
        padding-top: 60px;
        padding-bottom: 60px; } }
  footer#footer .pictogram {
    margin: 20px 0px; }
    @media (min-width: 768px) {
      footer#footer .pictogram {
        margin: 40px 0px; } }
  footer#footer #footer-menu li:first-child a {
    text-decoration: underline; }
  footer#footer #footer-menu li:after {
    color: #E7E6E1; }
  footer#footer #footer-menu li.current-menu-item:not(.current-menu-parent) > a, footer#footer #footer-menu li.selected > a {
    text-decoration: none; }
  footer#footer .services {
    line-height: 30px; }
    footer#footer .services.show-for-mobile .table-half {
      margin: 2em 0; }
      footer#footer .services.show-for-mobile .table-half .table-col:first-child {
        text-align: left; }
      footer#footer .services.show-for-mobile .table-half .table-col:last-child {
        text-align: right; }
    footer#footer .services.hide-for-mobile {
      margin: 2em 0;
      font-size: 20px;
      line-height: 36px; }
  footer#footer .table-3 .col:first-child {
    text-align: left; }
  footer#footer .table-3 .col:last-child {
    text-align: right; }
  footer#footer hr {
    border-color: #999;
    margin-bottom: 0px; }
  footer#footer .contact.show-for-mobile {
    line-height: 30px; }
    footer#footer .contact.show-for-mobile .footer-notice {
      margin: 1em 0; }
    footer#footer .contact.show-for-mobile .copyright {
      font-size: 12px; }
  footer#footer .contact.hide-for-mobile {
    margin-top: 2em; }
    footer#footer .contact.hide-for-mobile .col {
      vertical-align: bottom; }
    footer#footer .contact.hide-for-mobile .directions {
      font-size: 18px;
      line-height: 28px; }
      footer#footer .contact.hide-for-mobile .directions > p:first-child {
        margin-top: 0; }
    footer#footer .contact.hide-for-mobile .copyright {
      font-size: 14px; }
    footer#footer .contact.hide-for-mobile .footer-notice {
      font-size: 16px; }
  footer#footer .copyright, footer#footer .footer-notice {
    color: #999999; }

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%; }
  .wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .wp-caption .wp-caption-text {
    margin: 0.8075em 0; }

.wp-caption-text {
  text-align: center; }

/*--------------------------------------------------------------
## Images
--------------------------------------------------------------*/
.lazyload,
.lazyloading, .lazyload-persist {
  opacity: 0; }

.lazyloaded {
  opacity: 1;
  -webkit-transition: opacity 0.8s ease-out 0s;
  transition: opacity 0.8s ease-out 0s; }
  .lazyloaded.lazyload-no-delay {
    -webkit-transition: opacity 0.8s ease-out 0s;
    transition: opacity 0.8s ease-out 0s; }

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail .responsive {
  width: 100%;
  max-width: 100%;
  height: auto; }

/*
.responsive{
	width: 100% !important;
}
*/
.full-viewport {
  width: 100vw;
  height: 100vh; }
  .full-viewport .img-wrapper, .full-viewport .image_wrapper.autosize {
    padding-bottom: 0;
    height: 100%; }

.abs-full {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px; }

.bg-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }
  .bg-image.left_top {
    background-position: left top; }
  .bg-image.center_top {
    background-position: center top; }
  .bg-image.right_top {
    background-position: right top; }
  .bg-image.left_center {
    background-position: left center; }
  .bg-image.center_center {
    background-position: center center; }
  .bg-image.right_center {
    background-position: right center; }
  .bg-image.left_bottom {
    background-position: left bottom; }
  .bg-image.center_bottom {
    background-position: center bottom; }
  .bg-image.right_bottom {
    background-position: right bottom; }

.img-sizer {
  margin-right: auto;
  margin-left: auto; }

.img-container {
  padding: 30px;
  background-color: #F2F2F2;
  position: relative; }
  .img-container.dark {
    background-color: #404040; }

.img-wrapper, .image_wrapper.autosize {
  padding-bottom: 66.6666666667%;
  -webkit-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
  position: relative;
  overflow: hidden; }
  .img-wrapper.background, .background.image_wrapper.autosize, .img-wrapper.background-color, .background-color.image_wrapper.autosize {
    background-color: #F2F2F2; }
  .img-wrapper.no-background-color, .no-background-color.image_wrapper.autosize {
    background-color: transparent !important; }
  .img-wrapper IMG, .image_wrapper.autosize IMG,
  .img-wrapper .bg-image,
  .image_wrapper.autosize .bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px; }
  .img-wrapper .caption, .image_wrapper.autosize .caption {
    pointer-events: none;
    text-align: left;
    font-size: 12px;
    z-index: 2;
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 15px 10px 15px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3); }
  .img-wrapper IMG, .image_wrapper.autosize IMG {
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover";
    -o-object-position: center center;
       object-position: center center; }
    .img-wrapper IMG.left_top, .image_wrapper.autosize IMG.left_top {
      -o-object-position: left top;
         object-position: left top; }
    .img-wrapper IMG.center_top, .image_wrapper.autosize IMG.center_top {
      -o-object-position: center top;
         object-position: center top; }
    .img-wrapper IMG.right_top, .image_wrapper.autosize IMG.right_top {
      -o-object-position: right top;
         object-position: right top; }
    .img-wrapper IMG.left_center, .image_wrapper.autosize IMG.left_center {
      -o-object-position: left center;
         object-position: left center; }
    .img-wrapper IMG.center_center, .image_wrapper.autosize IMG.center_center {
      -o-object-position: center center;
         object-position: center center; }
    .img-wrapper IMG.right_center, .image_wrapper.autosize IMG.right_center {
      -o-object-position: right center;
         object-position: right center; }
    .img-wrapper IMG.left_bottom, .image_wrapper.autosize IMG.left_bottom {
      -o-object-position: left bottom;
         object-position: left bottom; }
    .img-wrapper IMG.center_bottom, .image_wrapper.autosize IMG.center_bottom {
      -o-object-position: center bottom;
         object-position: center bottom; }
    .img-wrapper IMG.right_bottom, .image_wrapper.autosize IMG.right_bottom {
      -o-object-position: right bottom;
         object-position: right bottom; }
  .img-wrapper.contain > DIV, .contain.image_wrapper.autosize > DIV {
    background-size: contain; }
  .img-wrapper.contain IMG, .contain.image_wrapper.autosize IMG {
    -o-object-fit: contain;
       object-fit: contain;
    font-family: "object-fit: contain"; }
  .img-wrapper.square, .square.image_wrapper.autosize {
    padding-bottom: 100%; }
  .img-wrapper.vertical, .vertical.image_wrapper.autosize {
    padding-bottom: 149.8823529412%; }
  .img-wrapper.archive_thumb, .archive_thumb.image_wrapper.autosize {
    padding-bottom: 148.5549132948%; }
    .img-wrapper.archive_thumb .bg-image, .archive_thumb.image_wrapper.autosize .bg-image {
      background-size: contain;
      background-position: center bottom; }
    .img-wrapper.archive_thumb IMG, .archive_thumb.image_wrapper.autosize IMG {
      -o-object-fit: contain;
         object-fit: contain;
      -o-object-position: center bottom;
         object-position: center bottom;
      font-family: "object-fit: contain"; }
  .img-wrapper.archive_detail, .archive_detail.image_wrapper.autosize {
    padding-bottom: 48.7038491752%; }
    .img-wrapper.archive_detail .bg-image, .archive_detail.image_wrapper.autosize .bg-image {
      background-size: contain;
      background-position: center bottom; }
    .img-wrapper.archive_detail IMG, .archive_detail.image_wrapper.autosize IMG {
      -o-object-fit: contain;
         object-fit: contain;
      -o-object-position: center center;
         object-position: center center;
      font-family: "object-fit: contain"; }
  .img-wrapper.full-bleed, .full-bleed.image_wrapper.autosize {
    padding-bottom: 56.25%; }
    @media (max-width: 767px) {
      .img-wrapper.full-bleed, .full-bleed.image_wrapper.autosize {
        padding-bottom: 100%; } }
    @media (min-width: 1800px) {
      .img-wrapper.full-bleed, .full-bleed.image_wrapper.autosize {
        padding-bottom: 75vh; } }
  .img-wrapper.gallery, .gallery.image_wrapper.autosize {
    padding-bottom: 74.7440273038%; }
  .img-wrapper.no-padding, .no-padding.image_wrapper.autosize {
    padding-bottom: 0; }

A:hover .img-wrapper, A:hover .image_wrapper.autosize {
  opacity: 0.75; }
  A:hover .img-wrapper.no-opacity-hover, A:hover .no-opacity-hover.image_wrapper.autosize {
    opacity: 1; }

.max-height {
  height: 100%; }

img.enlarge-gallery {
  cursor: pointer; }

.ie11 div.bg-image {
  background-image: none !important; }

.ie11 .img-wrapper.contain > DIV, .ie11 .contain.image_wrapper.autosize > DIV {
  background-size: contain; }

.ie11 .img-wrapper.contain IMG, .ie11 .contain.image_wrapper.autosize IMG {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  height: 100%;
  width: auto !important; }

/*--------------------------------------------------------------
## Videos
--------------------------------------------------------------*/
.video-container {
  position: absolute;
  width: 100%;
  height: 100%; }
  .video-container iframe, .video-container embed, .video-container object, .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9  9/16*100 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto; }
  .video-wrapper iframe, .video-wrapper embed, .video-wrapper object, .video-wrapper video, .video-wrapper .poster, .video-wrapper .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .video-wrapper.full-screen {
    padding-bottom: 0;
    width: 100%;
    height: 100%; }
    .video-wrapper.full-screen iframe, .video-wrapper.full-screen embed, .video-wrapper.full-screen object, .video-wrapper.full-screen video, .video-wrapper.full-screen .poster {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate3d(-50%, -50%, 0);
              transform: translate3d(-50%, -50%, 0); }

.screen-video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden; }
  @media (min-width: 1025px) {
    .screen-video-container .video-ctrl {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate3d(-50%, -50%, 0);
              transform: translate3d(-50%, -50%, 0);
      width: 100%; } }

.video-ctrl {
  /*
	&.video-is-fullscreen{
		width: 100vw;
		height: 100vh;
	}
	*/ }
  .video-ctrl .btn-ctrl {
    width: 38px;
    height: 38px;
    position: absolute;
    display: inline-block;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-out;
    transition: opacity 0.4s ease-out; }
    .video-ctrl .btn-ctrl.active {
      opacity: 1; }
  .video-ctrl.set-btn-play .play-btn {
    visibility: visible;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0); }
    .video-ctrl.set-btn-play .play-btn .icon-play, .video-ctrl.set-btn-play .play-btn .icon-pause {
      width: 38px;
      height: 38px;
      position: absolute;
      visibility: hidden; }
      .video-ctrl.set-btn-play .play-btn .icon-play.active, .video-ctrl.set-btn-play .play-btn .icon-pause.active {
        visibility: visible; }
  .video-ctrl.set-btn-fullscreen .fullscreen-btn {
    bottom: 0px;
    right: 0px; }
    .video-ctrl.set-btn-fullscreen .fullscreen-btn.is-enabled {
      visibility: visible; }
    .video-ctrl.set-btn-fullscreen .fullscreen-btn .icon-on, .video-ctrl.set-btn-fullscreen .fullscreen-btn .icon-off {
      width: 18px;
      height: 18px;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate3d(-50%, -50%, 0);
              transform: translate3d(-50%, -50%, 0);
      visibility: hidden; }
      .video-ctrl.set-btn-fullscreen .fullscreen-btn .icon-on.active, .video-ctrl.set-btn-fullscreen .fullscreen-btn .icon-off.active {
        visibility: visible; }
  .video-ctrl.set-btn-sound .sound-btn {
    visibility: visible;
    bottom: 0px;
    right: 60px;
    cursor: pointer; }
    .video-ctrl.set-btn-sound .sound-btn .icon-on, .video-ctrl.set-btn-sound .sound-btn .icon-off {
      width: 18px;
      height: 18px;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate3d(-50%, -50%, 0);
              transform: translate3d(-50%, -50%, 0);
      visibility: hidden; }
      .video-ctrl.set-btn-sound .sound-btn .icon-on.active, .video-ctrl.set-btn-sound .sound-btn .icon-off.active {
        visibility: visible; }
  .video-ctrl.loop-background {
    pointer-events: none; }
    .video-ctrl.loop-background .play-btn, .video-ctrl.loop-background .fullscreen-btn, .video-ctrl.loop-background .sound-btn {
      visibility: hidden;
      display: none !important; }
  .video-ctrl SVG {
    width: 100%;
    height: auto;
    fill: #fff;
    color: #fff;
    opacity: 0.6;
    -webkit-filter: drop-shadow(0 0 10px #000);
            filter: drop-shadow(0 0 10px #000); }
  .video-ctrl DIV:hover SVG {
    opacity: 1; }

.ios .video-ctrl .fullscreen-btn, .ios .video-ctrl .sound-btn {
  display: none !important; }

video:-webkit-full-screen {
  width: 100vw !important;
  height: 100vh !important;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
  left: 0px !important;
  top: 0px !important;
  right: 0px !important;
  bottom: 0px !important;
  position: absolute; }

video:-webkit-full-screen, video:fullscreen {
  width: 100vw !important;
  height: 100vh !important;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
  left: 0px !important;
  top: 0px !important;
  right: 0px !important;
  bottom: 0px !important;
  position: absolute; }

.slick-slide .img-wrapper .video-wrapper, .slick-slide .image_wrapper.autosize .video-wrapper {
  /*
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            padding-bottom: 0;
            */
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0); }

.video-ctrl-embed.video-wrapper {
  padding-bottom: 56.25%; }

.video-ctrl-embed .embed-content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px; }

.video-ctrl-embed .bg-overlay-video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  cursor: pointer; }
  .video-ctrl-embed .bg-overlay-video .img-wrapper, .video-ctrl-embed .bg-overlay-video .image_wrapper.autosize {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    padding-bottom: 0; }
  .video-ctrl-embed .bg-overlay-video .play-button {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0); }

/*--------------------------------------------------------------
# External Libraries
--------------------------------------------------------------*/
/* Make clicks pass-through */
#nprogress {
  pointer-events: none; }

#nprogress .bar {
  background: #000;
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px; }

/* Fancy blur effect */
/*
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;

  -webkit-transform: rotate(3deg) translate(0px, -4px);
      -ms-transform: rotate(3deg) translate(0px, -4px);
          transform: rotate(3deg) translate(0px, -4px);
}
*/
/* Remove these to get rid of the spinner */
/*
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
          animation: nprogress-spinner 400ms linear infinite;
}
*/
.nprogress-custom-parent {
  overflow: hidden;
  position: relative; }

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute; }

/*
@-webkit-keyframes nprogress-spinner {
  0%   { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

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

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

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

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

.slick-arrow.slick-hidden {
  display: none; }

.slick-dots {
  position: absolute;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none;
  bottom: -30px;
  height: 10px;
  margin-top: 20px; }
  .slick-dots li {
    display: inline-block;
    margin-right: 8px;
    margin-left: 8px; }
    .slick-dots li button {
      cursor: pointer;
      text-indent: -9999em;
      background: none;
      padding: 0;
      min-width: 0;
      width: 8px;
      height: 8px;
      background-color: #DDDDDD;
      border-radius: 50%;
      outline: 0;
      border: 0; }
      .slick-dots li button:hover {
        background-color: #979797; }
      .slick-dots li button:active {
        top: 0px; }
    .slick-dots li.slick-active button {
      background-color: #979797; }

.dots_over .slick-dots {
  bottom: 20px; }

.arrow-special {
  opacity: 0.8;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20%;
  height: 100%;
  left: 0px; }
  .arrow-special .base {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    width: 50px;
    height: 50px;
    position: absolute;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5); }
    .arrow-special .base svg {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate3d(-50%, -50%, 0);
              transform: translate3d(-50%, -50%, 0); }
  .arrow-special.right {
    left: auto;
    right: 0px; }
    .arrow-special.right .base {
      right: 0px; }
  .arrow-special:hover {
    opacity: 1 !important; }
    .arrow-special:hover .base {
      background-color: rgba(0, 0, 0, 0.7); }
  @media (max-width: 767px) {
    .arrow-special {
      display: none !important; } }

/*!--------------------------------------------------------------------
STYLES "Outdated Browser"
Version:    1.1.2 - 2015
author:     Burocratik
website:    http://www.burocratik.com
* @preserve
-----------------------------------------------------------------------*/
#outdated {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1500;
  padding: 50px;
  background-color: rgba(255, 255, 255, 0.6); }
  #outdated .window {
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
    padding: 60px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative; }
  #outdated H6 {
    text-transform: uppercase;
    color: #f25648; }
  #outdated P:last-of-type {
    margin-bottom: 0; }
  #outdated A.button {
    color: #fff;
    border-color: #000;
    background-color: #000; }
    #outdated A.button:hover {
      color: #000;
      background-color: #fff; }
  #outdated #btnCloseUpdateBrowser {
    display: block;
    position: relative;
    text-decoration: none;
    color: #000;
    font-size: 36px;
    position: absolute;
    top: 20px;
    right: 20px; }
  #outdated.ie8 {
    display: block; }
    #outdated.ie8 #btnCloseUpdateBrowser {
      display: none; }
  * html #outdated {
    position: absolute; }

/*!
 * jQuery Accordion 0.0.1
 * (c) 2014 Victor Fernandez <victor@vctrfrnndz.com>
 * MIT Licensed.
 */
/* Requirements */
[data-accordion] [data-content] {
  overflow: hidden;
  max-height: 0; }

/* Basic Theme */
[data-accordion] {
  line-height: 1; }

[data-content] [data-accordion] {
  border: 0;
  padding: 0; }

[data-accordion] [data-control] {
  position: relative; }

[data-accordion] > [data-control]:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 12px;
  font-size: 25px;
  font-weight: 200;
  color: #444;
  height: 15px;
  width: 24px; }

[data-accordion].open > [data-control]:after {
  /*
    -webkit-transform: rotate(-180deg); 
    -ms-transform: rotate(-180deg); 
    transform: rotate(-180deg); 
    */ }

/*! Flickity v2.2.0
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative; }

.flickity-enabled:focus {
  outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%; }

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%; }

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333; }

.flickity-button:hover {
  background: white;
  cursor: pointer; }

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F; }

.flickity-button:active {
  opacity: 0.6; }

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none; }

.flickity-button-icon {
  fill: currentColor; }

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }

.flickity-prev-next-button.previous {
  left: 10px; }

.flickity-prev-next-button.next {
  right: 10px; }

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px; }

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px; }

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%; }

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1; }

.flickity-rtl .flickity-page-dots {
  direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 8px;
  background-color: #DDDDDD;
  border-radius: 50%;
  cursor: pointer; }

.flickity-page-dots .dot.is-selected {
  background-color: #979797; }

/* flickity-fade */
.flickity-enabled.is-fade .flickity-slider > * {
  pointer-events: none;
  z-index: 0; }

.flickity-enabled.is-fade .flickity-slider > .is-selected {
  pointer-events: auto;
  z-index: 1; }

.SumoSelect p {
  margin: 0; }

.SumoSelect {
  width: 200px; }

.SelectBox {
  padding: 5px 8px; }

.sumoStopScroll {
  overflow: hidden; }

/* Filtering style */
.SumoSelect .hidden {
  display: none; }

.SumoSelect .search-txt {
  display: none;
  outline: none; }

.SumoSelect .no-match {
  display: none;
  padding: 6px; }

.SumoSelect.open .search-txt {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 5px 8px;
  border: none;
  box-sizing: border-box;
  border-radius: 5px; }

.SumoSelect.open > .search > span, .SumoSelect.open > .search > label {
  visibility: hidden; }

/*this is applied on that hidden select. DO NOT USE display:none; or visiblity:hidden; and Do not override any of these properties. */
.SelectClass, .SumoUnder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  box-sizing: border-box;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0; }

.SelectClass {
  z-index: 1; }

.SumoSelect > .optWrapper > .options li.opt label, .SumoSelect > .CaptionCont, .SumoSelect .select-all > label {
  -ms-user-select: none;
      user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none; }

.SumoSelect {
  display: inline-block;
  position: relative;
  outline: none; }

.SumoSelect > .CaptionCont {
  position: relative;
  border: 1px solid #A4A4A4;
  min-height: 14px;
  background-color: #fff;
  border-radius: 2px;
  margin: 0; }

.SumoSelect > .CaptionCont > span {
  display: block;
  padding-right: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: default; }

/*placeholder style*/
.SumoSelect > .CaptionCont > span.placeholder {
  color: #ccc;
  font-style: italic; }

.SumoSelect > .CaptionCont > label {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30px; }

.SumoSelect > .CaptionCont > label > i {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wMdBhAJ/fwnjwAAAGFJREFUKM9jYBh+gBFKuzEwMKQwMDB8xaOWlYGB4T4DA0MrsuapDAwM//HgNwwMDDbYTJuGQ8MHBgYGJ1xOYGNgYJiBpuEpAwODHSF/siDZ+ISBgcGClEDqZ2Bg8B6CkQsAPRga0cpRtDEAAAAASUVORK5CYII=");
  background-position: center center;
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-repeat: no-repeat;
  opacity: 0.8; }

.SumoSelect > .optWrapper {
  display: none;
  z-index: 1000;
  top: 30px;
  width: 100%;
  position: absolute;
  left: 0;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.11);
  border-radius: 3px;
  overflow: hidden; }

.SumoSelect.open > .optWrapper {
  top: 35px;
  display: block; }

.SumoSelect.open > .optWrapper.up {
  top: auto;
  bottom: 100%;
  margin-bottom: 5px; }

.SumoSelect > .optWrapper ul {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
  overflow: auto; }

.SumoSelect > .optWrapper > .options {
  border-radius: 2px;
  position: relative;
  /*Set the height of pop up here (only for desktop mode)*/
  max-height: 250px;
  /*height*/ }

.SumoSelect > .optWrapper.okCancelInMulti > .options {
  border-radius: 2px 2px 0 0; }

.SumoSelect > .optWrapper.selall > .options {
  border-radius: 0 0 2px 2px; }

.SumoSelect > .optWrapper.selall.okCancelInMulti > .options {
  border-radius: 0; }

.SumoSelect > .optWrapper > .options li.group.disabled > label {
  opacity: 0.5; }

.SumoSelect > .optWrapper > .options li ul li.opt {
  padding-left: 22px; }

.SumoSelect > .optWrapper.multiple > .options li ul li.opt {
  padding-left: 50px; }

.SumoSelect > .optWrapper.isFloating > .options {
  max-height: 100%;
  box-shadow: 0 0 100px #595959; }

.SumoSelect > .optWrapper > .options li.opt {
  padding: 6px 6px;
  position: relative;
  border-bottom: 1px solid #f5f5f5; }

.SumoSelect > .optWrapper > .options > li.opt:first-child {
  border-radius: 2px 2px 0 0; }

.SumoSelect > .optWrapper.selall > .options > li.opt:first-child {
  border-radius: 0; }

.SumoSelect > .optWrapper > .options > li.opt:last-child {
  border-radius: 0 0 2px 2px;
  border-bottom: none; }

.SumoSelect > .optWrapper.okCancelInMulti > .options > li.opt:last-child {
  border-radius: 0; }

.SumoSelect > .optWrapper > .options li.opt:hover {
  background-color: #E4E4E4; }

.SumoSelect > .optWrapper > .options li.opt.sel, .SumoSelect .select-all.sel {
  background-color: #a1c0e4; }

.SumoSelect > .optWrapper > .options li label {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  cursor: pointer; }

.SumoSelect > .optWrapper > .options li span {
  display: none; }

.SumoSelect > .optWrapper > .options li.group > label {
  cursor: default;
  padding: 8px 6px;
  font-weight: bold; }

/*Floating styles*/
.SumoSelect > .optWrapper.isFloating {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 90%;
  bottom: 0;
  margin: auto;
  max-height: 90%; }

/*disabled state*/
.SumoSelect > .optWrapper > .options li.opt.disabled {
  background-color: inherit;
  pointer-events: none; }

.SumoSelect > .optWrapper > .options li.opt.disabled * {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  /* IE 5-7 */
  filter: alpha(opacity=50);
  /* Netscape */
  -moz-opacity: 0.5;
  /* Safari 1.x */
  -khtml-opacity: 0.5;
  /* Good browsers */
  opacity: 0.5; }

/*styling for multiple select*/
.SumoSelect > .optWrapper.multiple > .options li.opt {
  padding-left: 35px;
  cursor: pointer; }

.SumoSelect > .optWrapper.multiple > .options li.opt span,
.SumoSelect .select-all > span {
  position: absolute;
  display: block;
  width: 30px;
  top: 0;
  bottom: 0;
  margin-left: -35px; }

.SumoSelect > .optWrapper.multiple > .options li.opt span i,
.SumoSelect .select-all > span i {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 14px;
  height: 14px;
  border: 1px solid #AEAEAE;
  border-radius: 2px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
  background-color: #fff; }

.SumoSelect > .optWrapper > .MultiControls {
  display: none;
  border-top: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.13);
  border-radius: 0 0 3px 3px; }

.SumoSelect > .optWrapper.multiple.isFloating > .MultiControls {
  display: block;
  margin-top: 5px;
  position: absolute;
  bottom: 0;
  width: 100%; }

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls {
  display: block; }

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls > p {
  padding: 6px; }

.SumoSelect > .optWrapper.multiple.okCancelInMulti > .MultiControls > p:focus {
  box-shadow: 0 0 2px #a1c0e4;
  border-color: #a1c0e4;
  outline: none;
  background-color: #a1c0e4; }

.SumoSelect > .optWrapper.multiple > .MultiControls > p {
  display: inline-block;
  cursor: pointer;
  padding: 12px;
  width: 50%;
  box-sizing: border-box;
  text-align: center; }

.SumoSelect > .optWrapper.multiple > .MultiControls > p:hover {
  background-color: #f1f1f1; }

.SumoSelect > .optWrapper.multiple > .MultiControls > p.btnOk {
  border-right: 1px solid #DBDBDB;
  border-radius: 0 0 0 3px; }

.SumoSelect > .optWrapper.multiple > .MultiControls > p.btnCancel {
  border-radius: 0 0 3px 0; }

/*styling for select on popup mode*/
.SumoSelect > .optWrapper.isFloating > .options li.opt {
  padding: 12px 6px; }

/*styling for only multiple select on popup mode*/
.SumoSelect > .optWrapper.multiple.isFloating > .options li.opt {
  padding-left: 35px; }

.SumoSelect > .optWrapper.multiple.isFloating {
  padding-bottom: 43px; }

.SumoSelect > .optWrapper.multiple > .options li.opt.selected span i,
.SumoSelect .select-all.selected > span i,
.SumoSelect .select-all.partial > span i {
  background-color: #11a911;
  box-shadow: none;
  border-color: transparent;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAGCAYAAAD+Bd/7AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNXG14zYAAABMSURBVAiZfc0xDkAAFIPhd2Kr1WRjcAExuIgzGUTIZ/AkImjSofnbNBAfHvzAHjOKNzhiQ42IDFXCDivaaxAJd0xYshT3QqBxqnxeHvhunpu23xnmAAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
  background-position: center center; }

/*disabled state*/
.SumoSelect.disabled {
  opacity: 0.7;
  cursor: not-allowed; }

.SumoSelect.disabled > .CaptionCont {
  border-color: #ccc;
  box-shadow: none; }

/**Select all button**/
.SumoSelect .select-all {
  border-radius: 3px 3px 0 0;
  position: relative;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  padding: 8px 0 3px 35px;
  height: 20px;
  cursor: pointer; }

.SumoSelect .select-all > label, .SumoSelect .select-all > span i {
  cursor: pointer; }

.SumoSelect .select-all.partial > span i {
  background-color: #ccc; }

/*styling for optgroups*/
.SumoSelect > .optWrapper > .options li.optGroup {
  padding-left: 5px;
  text-decoration: underline; }

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
.block, HR {
  margin-bottom: 36px; }
  @media (min-width: 768px) and (max-width: 1025px) {
    .block, HR {
      margin-bottom: 48px; } }
  @media (min-width: 1025px) {
    .block, HR {
      margin-bottom: 50px; } }
  @media (min-width: 1400px) {
    .block, HR {
      margin-bottom: 80px; } }
  .block.background, HR.background {
    background-color: #F2F2F2; }
  .block.background_dark, HR.background_dark {
    background-color: #404040; }
  .block.border, HR.border {
    border-top: 1px solid #CDCDCD;
    border-bottom: 1px solid #CDCDCD;
    padding-bottom: 30px;
    padding-top: 30px; }
    @media (min-width: 768px) and (max-width: 1025px) {
      .block.border, HR.border {
        padding-top: 30px;
        padding-bottom: 30px; } }
    @media (min-width: 1025px) {
      .block.border, HR.border {
        padding-top: 50px;
        padding-bottom: 50px; } }
  .block.border-top, HR.border-top {
    border-top: 1px solid #CDCDCD;
    padding-top: 30px; }
    @media (min-width: 768px) and (max-width: 1025px) {
      .block.border-top, HR.border-top {
        padding-top: 30px; } }
    @media (min-width: 1025px) {
      .block.border-top, HR.border-top {
        padding-top: 50px; } }
  .block.debug, HR.debug {
    min-height: 30vh; }

.block-double, .module, .module-project .flex-container .item-project {
  margin-bottom: 72px; }
  @media (min-width: 768px) and (max-width: 1025px) {
    .block-double, .module, .module-project .flex-container .item-project {
      margin-bottom: 96px; } }
  @media (min-width: 1025px) {
    .block-double, .module, .module-project .flex-container .item-project {
      margin-bottom: 100px; } }
  @media (min-width: 1400px) {
    .block-double, .module, .module-project .flex-container .item-project {
      margin-bottom: 160px; } }

.block.border + .block.border, HR.border + .block.border, .block.border + HR.border, HR.border + HR.border {
  border-top: 0;
  padding-top: 0; }

.block:first-child.border, HR:first-child.border {
  border-top: 0;
  padding-top: 0; }

.block:last-child.border, HR:last-child.border {
  border-bottom: 0;
  padding-bottom: 0; }

.block-large {
  margin-bottom: 60px; }
  @media (min-width: 768px) and (max-width: 1025px) {
    .block-large {
      margin-bottom: 50px; } }
  @media (min-width: 1025px) {
    .block-large {
      margin-bottom: 80px; } }

.block-half {
  margin-bottom: 15px; }
  @media (min-width: 768px) and (max-width: 1025px) {
    .block-half {
      margin-bottom: 15px; } }
  @media (min-width: 1025px) {
    .block-half {
      margin-bottom: 25px; } }
  .block-half.border-top {
    border-top: 1px solid #CDCDCD;
    padding-top: 30px; }
    @media (min-width: 768px) and (max-width: 1025px) {
      .block-half.border-top {
        padding-top: 30px; } }
    @media (min-width: 1025px) {
      .block-half.border-top {
        padding-top: 50px; } }

.block-quarter {
  margin-bottom: 12.5px; }
  @media (min-width: 1025px) {
    .block-quarter {
      margin-bottom: 16.6666666667px; } }

.block-top {
  margin-top: 30px; }
  @media (min-width: 768px) and (max-width: 1025px) {
    .block-top {
      margin-top: 30px; } }
  @media (min-width: 1025px) {
    .block-top {
      margin-top: 50px; } }

.block-half-top {
  margin-top: 15px; }
  @media (min-width: 768px) and (max-width: 1025px) {
    .block-half-top {
      margin-top: 15px; } }
  @media (min-width: 1025px) {
    .block-half-top {
      margin-top: 25px; } }

.block-quarter-top {
  margin-top: 12.5px; }

.block-large-top {
  margin-top: 30px; }
  @media (min-width: 768px) and (max-width: 1025px) {
    .block-large-top {
      margin-top: 50px; } }
  @media (min-width: 1025px) {
    .block-large-top {
      margin-top: 80px; } }

.columns_wrap {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px; }
  .columns_wrap .item {
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid;
    min-height: 20px;
    margin-bottom: 1px; }
    .columns_wrap .item .eyebrow, .columns_wrap .item .module_page_section_nav UL, .module_page_section_nav .columns_wrap .item UL {
      margin-bottom: 2px;
      max-width: 310px; }
  @media (min-width: 768px) and (max-width: 1025px) {
    .columns_wrap {
      -webkit-column-count: 3;
         -moz-column-count: 3;
              column-count: 3; } }
  @media (min-width: 1025px) {
    .columns_wrap {
      -webkit-column-count: 3;
         -moz-column-count: 3;
              column-count: 3;
      -webkit-column-gap: 30px;
         -moz-column-gap: 30px;
              column-gap: 30px; }
      .columns_wrap.col_4 {
        -webkit-column-count: 4;
           -moz-column-count: 4;
                column-count: 4; } }

.columns {
  position: relative;
  width: 100%; }
  .columns > .col {
    margin-bottom: 50px; }
    .columns > .col .max {
      max-width: 700px; }
    .columns > .col:last-of-type {
      margin-bottom: 0; }
  @media (min-width: 768px) {
    .columns {
      display: table;
      table-layout: fixed;
      margin-left: -50px;
      width: calc(100% + 50px); }
      .columns > .col {
        width: 25%;
        display: table-cell;
        padding-left: 50px;
        margin-bottom: 0;
        vertical-align: top; }
        .columns > .col.middle {
          vertical-align: middle; }
        .columns > .col.half, .columns > .col.wide {
          width: 50%; }
        .columns > .col.extra_wide {
          width: 75%; }
      .columns.thirds > .col {
        width: 33.33%; }
        .columns.thirds > .col.wide {
          width: 66.66%; }
      .columns.margin_xl {
        margin-left: -80px;
        width: calc(100% + 80px); }
        .columns.margin_xl > .col {
          padding-left: 80px; } }

.wrap, .wrap-all, #logo-home, #main-header #menu-wrap {
  margin-left: 20px;
  margin-right: 20px;
  position: relative; }
  @media (min-width: 1025px) {
    .wrap, .wrap-all, #logo-home, #main-header #menu-wrap {
      margin-left: 30px;
      margin-right: 30px; } }
  @media (min-width: 1800px) {
    .wrap, .wrap-all, #logo-home, #main-header #menu-wrap {
      margin-left: 50px;
      margin-right: 50px; } }

.wrap-all, #logo-home, #main-header #menu-wrap {
  margin-top: 20px;
  margin-bottom: 20px; }
  @media (min-width: 1025px) {
    .wrap-all, #logo-home, #main-header #menu-wrap {
      margin-top: 30px;
      margin-bottom: 30px; } }
  @media (min-width: 1800px) {
    .wrap-all, #logo-home, #main-header #menu-wrap {
      margin-top: 50px;
      margin-bottom: 50px; } }

.padding-all {
  padding: 30px; }
  @media (min-width: 1025px) {
    .padding-all {
      padding: 50px; } }
  @media (min-width: 1800px) {
    .padding-all {
      padding: 80px; } }

.padding-all-small {
  padding: 20px; }
  @media (min-width: 1025px) {
    .padding-all-small {
      padding: 30px; } }
  @media (min-width: 1800px) {
    .padding-all-small {
      padding: 50px; } }

.wrap-negative {
  margin-left: -20px;
  margin-right: -20px;
  position: relative; }
  @media (min-width: 1025px) {
    .wrap-negative {
      margin-left: -30px;
      margin-right: -30px; } }
  @media (min-width: 1800px) {
    .wrap-negative {
      margin-left: -50px;
      margin-right: -50px; } }

.wrap-max-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px; }
  @media (min-width: 768px) and (max-width: 1025px) {
    .wrap-max-content {
      margin-left: 30px;
      margin-right: 30px; } }
  @media (min-width: 1025px) {
    .wrap-max-content {
      width: 65vw; } }

.wrap-max-large-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1680px; }

.wrap-text {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto; }

.wrap-text-large {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto; }

.wrap-text-extra-large {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto; }

.wrap-text-hero {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto; }

/****************** GRID PACKERY ***********************************/
.grid-packery {
  position: relative;
  z-index: 0;
  overflow: hidden;
  clear: both;
  /****************** DEFAULT SIZES ***********************************/
  /****************** SPECIAL GRIDS ***********************************/ }
  .grid-packery > .gutter-sizer {
    width: 20px; }
    @media (min-width: 568px) {
      .grid-packery > .gutter-sizer {
        width: 4.4776119403%; } }
    @media (min-width: 768px) {
      .grid-packery > .gutter-sizer {
        width: 6.7164179104%; } }
  .grid-packery > .item-grid {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    position: relative;
    -webkit-transition: opacity 0.4s ease-out;
    transition: opacity 0.4s ease-out;
    opacity: 0; }
    .grid-packery > .item-grid A {
      display: block;
      width: 100%;
      position: relative;
      height: 100%; }
    .grid-packery > .item-grid .text {
      margin-top: 20px; }
      @media (min-width: 768px) and (max-width: 1025px) {
        .grid-packery > .item-grid .text {
          min-height: 64px; } }
      @media (min-width: 1025px) {
        .grid-packery > .item-grid .text {
          min-height: 67px; } }
  .grid-packery.packed > .item-grid {
    opacity: 1; }
  .grid-packery .img-wrapper, .grid-packery .image_wrapper.autosize {
    line-height: 0px;
    -webkit-transition: opacity 0.4s ease-out;
    transition: opacity 0.4s ease-out; }
  .grid-packery A:hover .img-wrapper, .grid-packery A:hover .image_wrapper.autosize {
    opacity: 0.75; }
  .grid-packery.grid-2-cols > .item-grid {
    width: calc( (100% - 20px)/2); }
    @media (min-width: 768px) {
      .grid-packery.grid-2-cols > .item-grid {
        width: calc( (100% - 1*6.7164179104%)/2);
        margin-bottom: 0; } }
    @media (min-width: 1800px) {
      .grid-packery.grid-2-cols > .item-grid {
        width: calc( (100% - 2*6.7164179104%)/3); } }
    .grid-packery.grid-2-cols > .item-grid.large {
      width: 100%; }
  @media (min-width: 568px) {
    .grid-packery.grid-3-cols > .item-grid {
      width: calc( (100% - 1*6.7164179104%)/2);
      margin-bottom: 0; } }
  @media (min-width: 768px) {
    .grid-packery.grid-3-cols > .item-grid {
      width: calc( (100% - 1*6.7164179104%)/2);
      margin-bottom: 0; } }
  @media (min-width: 1025px) {
    .grid-packery.grid-3-cols > .item-grid {
      width: calc( (100% - 2*6.7164179104%) / 3);
      margin-bottom: 0; } }
  @media (min-width: 568px) {
    .grid-packery.grid-3-cols-and-landscape > .item-grid {
      width: calc( (100% - 1*4.4776119403%)/2);
      margin-bottom: 0; } }
  @media (min-width: 768px) {
    .grid-packery.grid-3-cols-and-landscape > .item-grid {
      width: calc( (100% - 2*6.7164179104%) / 3);
      margin-bottom: 0; } }
  .grid-packery.grid-4-cols > .item-grid {
    width: 100%; }
    @media (min-width: 768px) {
      .grid-packery.grid-4-cols > .item-grid {
        width: calc( (100% - 1*6.7164179104%)/2);
        margin-bottom: 0; } }
    @media (min-width: 1025px) {
      .grid-packery.grid-4-cols > .item-grid {
        width: calc( (100% - 2*6.7164179104%)/3); } }
    @media (min-width: 1400px) {
      .grid-packery.grid-4-cols > .item-grid {
        width: calc( (100% - 3*6.7164179104%)/4); } }
  .grid-packery.grid-5-cols > .item-grid {
    width: calc( (100% - 20px)/2); }
    @media (min-width: 768px) {
      .grid-packery.grid-5-cols > .item-grid {
        width: calc( (100% - 2*6.7164179104%)/3);
        margin-bottom: 0; } }
    @media (min-width: 1025px) {
      .grid-packery.grid-5-cols > .item-grid {
        width: calc( (100% - 4*6.7164179104%)/5); } }
  .grid-packery.grid-collection > .gutter-sizer {
    position: relative !important;
    width: 30px; }
  .grid-packery.grid-collection > .item-grid {
    width: calc( (100% - 1*30px)/2);
    margin-bottom: 0; }
    @media (min-width: 768px) {
      .grid-packery.grid-collection > .item-grid {
        width: calc( (100% - 2*30px) / 3); } }
    @media (min-width: 1025px) {
      .grid-packery.grid-collection > .item-grid {
        width: calc( (100% - 3*30px)/4); } }
  .grid-packery.grid-ca-archive > .gutter-sizer {
    width: 20px; }
    @media (min-width: 768px) {
      .grid-packery.grid-ca-archive > .gutter-sizer {
        width: 50px; } }
  .grid-packery.grid-ca-archive > .item-grid {
    width: calc( (100% - 20px)/2);
    padding-top: 25px; }
    @media (min-width: 768px) and (max-width: 1025px) {
      .grid-packery.grid-ca-archive > .item-grid {
        width: calc( (100% - 3*50px)/4);
        margin-bottom: 0; } }
    @media (min-width: 1025px) {
      .grid-packery.grid-ca-archive > .item-grid {
        width: calc( (100% - 4*50px)/5);
        margin-bottom: 0; } }
    @media (min-width: 1400px) {
      .grid-packery.grid-ca-archive > .item-grid {
        width: calc( (100% - 5*50px)/6);
        margin-bottom: 0; } }
    @media (min-width: 1800px) {
      .grid-packery.grid-ca-archive > .item-grid {
        width: calc( (100% - 6*50px)/7);
        margin-bottom: 0; } }
    .grid-packery.grid-ca-archive > .item-grid:before {
      content: ' ';
      display: block;
      top: -1px;
      left: -25px;
      right: -5000px;
      height: 1px;
      background-color: #CDCDCD;
      position: absolute; }
    .grid-packery.grid-ca-archive > .item-grid .text {
      min-height: 96px; }
      @media (min-width: 768px) and (max-width: 1025px) {
        .grid-packery.grid-ca-archive > .item-grid .text {
          min-height: 107px; } }
      @media (min-width: 1025px) {
        .grid-packery.grid-ca-archive > .item-grid .text {
          min-height: 110px; } }
    .grid-packery.grid-ca-archive > .item-grid .text_position {
      position: relative; }
    .grid-packery.grid-ca-archive > .item-grid .text_full {
      background-color: white;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding-top: 5px;
      display: none; }
    .grid-packery.grid-ca-archive > .item-grid .more {
      -webkit-transition: opacity 0.4s ease-out;
      transition: opacity 0.4s ease-out;
      opacity: 0; }
    .grid-packery.grid-ca-archive > .item-grid:hover .more {
      opacity: 1; }
    .grid-packery.grid-ca-archive > .item-grid:hover .thumb-text {
      text-decoration: underline; }
    .grid-packery.grid-ca-archive > .item-grid:hover .text_full {
      display: block; }
  .grid-packery.grid-ca-archive.grid-cr-browse > .item-grid {
    padding-top: 0px; }
    .grid-packery.grid-ca-archive.grid-cr-browse > .item-grid:before {
      display: none; }
    .grid-packery.grid-ca-archive.grid-cr-browse > .item-grid .text {
      min-height: auto; }
    .grid-packery.grid-ca-archive.grid-cr-browse > .item-grid.item-large {
      width: 100%; }
    @media (min-width: 768px) and (max-width: 1025px) {
      .grid-packery.grid-ca-archive.grid-cr-browse > .item-grid {
        width: calc( (100% - 2*50px)/3);
        margin-bottom: 0; }
        .grid-packery.grid-ca-archive.grid-cr-browse > .item-grid.item-large {
          width: calc( 2*((100% - 2*50px)/3) + 50px); } }
    @media (min-width: 1025px) {
      .grid-packery.grid-ca-archive.grid-cr-browse > .item-grid {
        width: calc( (100% - 3*50px)/4);
        margin-bottom: 0; }
        .grid-packery.grid-ca-archive.grid-cr-browse > .item-grid.item-large {
          width: calc( 2*((100% - 3*50px)/4) + 50px); } }
    @media (min-width: 1400px) {
      .grid-packery.grid-ca-archive.grid-cr-browse > .item-grid {
        width: calc( (100% - 4*50px)/5);
        margin-bottom: 0; }
        .grid-packery.grid-ca-archive.grid-cr-browse > .item-grid.item-large {
          width: calc( 2*((100% - 4*50px)/5) + 50px); } }
    @media (min-width: 1800px) {
      .grid-packery.grid-ca-archive.grid-cr-browse > .item-grid {
        width: calc( (100% - 5*50px)/6);
        margin-bottom: 0; }
        .grid-packery.grid-ca-archive.grid-cr-browse > .item-grid.item-large {
          width: calc( 2*((100% - 5*50px)/6) + 50px); } }

.grid-flex {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between; }
  @supports (display: grid) {
    .grid-flex {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 20px; }
      @media (min-width: 768px) and (max-width: 1025px) {
        .grid-flex {
          -ms-grid-columns: (1fr)[3];
          grid-template-columns: repeat(3, 1fr);
          grid-gap: 50px; } }
      @media (min-width: 1025px) {
        .grid-flex {
          -ms-grid-columns: (1fr)[4];
          grid-template-columns: repeat(4, 1fr);
          grid-gap: 50px; } }
      @media (min-width: 1400px) {
        .grid-flex {
          -ms-grid-columns: (1fr)[5];
          grid-template-columns: repeat(5, 1fr);
          grid-gap: 50px; } }
      @media (min-width: 1800px) {
        .grid-flex {
          -ms-grid-columns: (1fr)[6];
          grid-template-columns: repeat(6, 1fr);
          grid-gap: 50px; } }
      .grid-flex > .item-grid.item-large {
        -ms-grid-column-span: 2;
        grid-column: span 2; } }
  .grid-flex img {
    width: 100%; }

.ie11 .grid-flex > .item-grid {
  width: calc( (100% - 1*20px)/2); }
  .ie11 .grid-flex > .item-grid.item-large {
    width: 100%; }
  @media (min-width: 768px) and (max-width: 1025px) {
    .ie11 .grid-flex > .item-grid {
      width: calc( (100% - 2*50px)/3); }
      .ie11 .grid-flex > .item-grid.item-large {
        width: calc( 2*((100% - 2*50px)/3) + 50px); } }
  @media (min-width: 1025px) {
    .ie11 .grid-flex > .item-grid {
      width: calc( (100% - 3*50px)/4); }
      .ie11 .grid-flex > .item-grid.item-large {
        width: calc( 2*((100% - 3*50px)/4) + 50px); } }
  @media (min-width: 1400px) {
    .ie11 .grid-flex > .item-grid {
      width: calc( (100% - 4*50px)/5); }
      .ie11 .grid-flex > .item-grid.item-large {
        width: calc( 2*((100% - 4*50px)/5) + 50px); } }
  @media (min-width: 1800px) {
    .ie11 .grid-flex > .item-grid {
      width: calc( (100% - 5*50px)/6); }
      .ie11 .grid-flex > .item-grid.item-large {
        width: calc( 2*((100% - 5*50px)/6) + 50px); } }

.grid-flexbox {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
          justify-content: center; }
  .grid-flexbox > .item-grid {
    padding: 0px 10px;
    width: calc( (100% - 1*20px)/2); }
    .grid-flexbox > .item-grid img {
      width: 100%; }
    @media (min-width: 768px) and (max-width: 1025px) {
      .grid-flexbox > .item-grid {
        width: calc( (100% - 2*50px)/3);
        padding: 0px 25px; } }
    @media (min-width: 1025px) {
      .grid-flexbox > .item-grid {
        width: calc( (100% - 3*50px)/4);
        padding: 0px 25px; } }
    @media (min-width: 1400px) {
      .grid-flexbox > .item-grid {
        width: calc( (100% - 4*50px)/5);
        padding: 0px 25px; } }
    @media (min-width: 1800px) {
      .grid-flexbox > .item-grid {
        width: calc( (100% - 5*50px)/6);
        padding: 0px 25px; } }

.grid-flexbox-layout {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
          justify-content: center;
  /****************** SPECIAL GRIDS ***********************************/ }
  .grid-flexbox-layout > .item-grid {
    padding-bottom: 20px;
    width: 100%; }
    .grid-flexbox-layout > .item-grid .text {
      margin-top: 20px; }
    .grid-flexbox-layout > .item-grid:last-of-type {
      padding-bottom: 0; }
  @media (max-width: 767px) and (orientation: landscape) {
    .grid-flexbox-layout.grid-2-cols {
      margin-right: -10px;
      margin-left: -10px;
      margin-bottom: -20px; }
      .grid-flexbox-layout.grid-2-cols > .item-grid {
        width: 50%;
        padding: 0 10px 20px 10px; } }
  @media (min-width: 768px) and (max-width: 1025px) {
    .grid-flexbox-layout.grid-2-cols {
      margin-right: -25px;
      margin-left: -25px;
      margin-bottom: -50px; }
      .grid-flexbox-layout.grid-2-cols > .item-grid {
        width: 50%;
        padding: 0 25px 50px 25px; } }
  @media (min-width: 1025px) {
    .grid-flexbox-layout.grid-2-cols {
      margin-right: -40px;
      margin-left: -40px;
      margin-bottom: -80px; }
      .grid-flexbox-layout.grid-2-cols > .item-grid {
        width: 50%;
        padding: 0 40px 80px 40px; } }
  @media (max-width: 767px) and (orientation: landscape) {
    .grid-flexbox-layout.grid-3-cols {
      margin-right: -10px;
      margin-left: -10px;
      margin-bottom: -20px; }
      .grid-flexbox-layout.grid-3-cols > .item-grid {
        width: 50%;
        padding: 0 10px 20px 10px; } }
  @media (min-width: 768px) and (max-width: 1025px) {
    .grid-flexbox-layout.grid-3-cols {
      margin-right: -25px;
      margin-left: -25px;
      margin-bottom: -50px; }
      .grid-flexbox-layout.grid-3-cols > .item-grid {
        width: 33.3333333333%;
        padding: 0 25px 50px 25px; } }
  @media (min-width: 1025px) {
    .grid-flexbox-layout.grid-3-cols {
      margin-right: -40px;
      margin-left: -40px;
      margin-bottom: -80px; }
      .grid-flexbox-layout.grid-3-cols > .item-grid {
        width: 33.3333333333%;
        padding: 0 40px 80px 40px; } }
  @media (max-width: 767px) {
    .grid-flexbox-layout.grid-4-cols {
      margin-right: -10px;
      margin-left: -10px;
      margin-bottom: -20px; }
      .grid-flexbox-layout.grid-4-cols > .item-grid {
        width: 50%;
        padding: 0 10px 20px 10px; } }
  @media (min-width: 768px) and (max-width: 1025px) {
    .grid-flexbox-layout.grid-4-cols {
      margin-right: -25px;
      margin-left: -25px;
      margin-bottom: -50px; }
      .grid-flexbox-layout.grid-4-cols > .item-grid {
        width: 25%;
        padding: 0 25px 50px 25px; } }
  @media (min-width: 1025px) {
    .grid-flexbox-layout.grid-4-cols {
      margin-right: -40px;
      margin-left: -40px;
      margin-bottom: -80px; }
      .grid-flexbox-layout.grid-4-cols > .item-grid {
        width: 25%;
        padding: 0 40px 80px 40px; } }
  @media (min-width: 1800px) {
    .grid-flexbox-layout.grid-4-cols {
      margin-right: -40px;
      margin-left: -40px;
      margin-bottom: -80px; }
      .grid-flexbox-layout.grid-4-cols > .item-grid {
        width: 20%;
        padding: 0 40px 80px 40px; } }
  @media (max-width: 767px) and (orientation: landscape) {
    .grid-flexbox-layout.grid-events {
      margin-right: -10px;
      margin-left: -10px;
      margin-bottom: -20px;
      -webkit-box-pack: end;
              justify-content: flex-end; }
      .grid-flexbox-layout.grid-events > .item-grid {
        width: 50%;
        padding: 0 10px 20px 10px; }
      .grid-flexbox-layout.grid-events > .item-grid {
        padding-bottom: 0; }
        .grid-flexbox-layout.grid-events > .item-grid.image {
          width: 25%; }
        .grid-flexbox-layout.grid-events > .item-grid.info {
          width: 75%; }
        .grid-flexbox-layout.grid-events > .item-grid.add {
          width: 75%; } }
  @media (min-width: 768px) and (max-width: 1025px) {
    .grid-flexbox-layout.grid-events {
      margin-right: -10px;
      margin-left: -10px;
      margin-bottom: -20px;
      -webkit-box-pack: end;
              justify-content: flex-end; }
      .grid-flexbox-layout.grid-events > .item-grid {
        width: 50%;
        padding: 0 10px 20px 10px; }
      .grid-flexbox-layout.grid-events > .item-grid {
        padding-bottom: 0; }
        .grid-flexbox-layout.grid-events > .item-grid.image {
          width: 25%; }
        .grid-flexbox-layout.grid-events > .item-grid.info {
          width: 75%; }
        .grid-flexbox-layout.grid-events > .item-grid.add {
          width: 75%; } }
  @media (min-width: 1025px) {
    .grid-flexbox-layout.grid-events {
      margin-right: -25px;
      margin-left: -25px;
      margin-bottom: -50px; }
      .grid-flexbox-layout.grid-events > .item-grid {
        width: 25%;
        padding: 0 25px 50px 25px; }
      .grid-flexbox-layout.grid-events > .item-grid.info {
        width: 50%; } }
  @media (max-width: 767px) and (orientation: landscape) {
    .grid-flexbox-layout.grid-list {
      margin-right: -10px;
      margin-left: -10px;
      margin-bottom: -20px; }
      .grid-flexbox-layout.grid-list > .item-grid {
        width: 50%;
        padding: 0 10px 20px 10px; } }
  @media (min-width: 768px) {
    .grid-flexbox-layout.grid-list {
      margin-right: -25px;
      margin-left: -25px;
      margin-bottom: -50px; }
      .grid-flexbox-layout.grid-list > .item-grid {
        width: 33.3333333333%;
        padding: 0 25px 50px 25px; }
      .grid-flexbox-layout.grid-list > .item-grid.info {
        width: 66.66%; } }
  .grid-flexbox-layout.grid-ca-archive {
    overflow: hidden; }
    @media (max-width: 767px) {
      .grid-flexbox-layout.grid-ca-archive {
        margin-right: -10px;
        margin-left: -10px;
        margin-bottom: -20px; }
        .grid-flexbox-layout.grid-ca-archive > .item-grid {
          width: 50%;
          padding: 0 10px 20px 10px; } }
    @media (min-width: 768px) and (max-width: 1025px) {
      .grid-flexbox-layout.grid-ca-archive {
        margin-right: -25px;
        margin-left: -25px;
        margin-bottom: -50px; }
        .grid-flexbox-layout.grid-ca-archive > .item-grid {
          width: 25%;
          padding: 0 25px 50px 25px; } }
    @media (min-width: 1025px) {
      .grid-flexbox-layout.grid-ca-archive {
        margin-right: -40px;
        margin-left: -40px;
        margin-bottom: -80px; }
        .grid-flexbox-layout.grid-ca-archive > .item-grid {
          width: 20%;
          padding: 0 40px 80px 40px; } }
    @media (min-width: 1400px) {
      .grid-flexbox-layout.grid-ca-archive {
        margin-right: -40px;
        margin-left: -40px;
        margin-bottom: -80px; }
        .grid-flexbox-layout.grid-ca-archive > .item-grid {
          width: 16.6666666667%;
          padding: 0 40px 80px 40px; } }
    @media (min-width: 1800px) {
      .grid-flexbox-layout.grid-ca-archive {
        margin-right: -40px;
        margin-left: -40px;
        margin-bottom: -80px; }
        .grid-flexbox-layout.grid-ca-archive > .item-grid {
          width: 14.2857142857%;
          padding: 0 40px 80px 40px; } }
    .grid-flexbox-layout.grid-ca-archive > .item-grid {
      position: relative;
      padding-top: 25px; }
      .grid-flexbox-layout.grid-ca-archive > .item-grid:before {
        content: ' ';
        display: block;
        top: -1px;
        left: -5000px;
        right: -5000px;
        height: 1px;
        background-color: #CDCDCD;
        position: absolute; }
      .grid-flexbox-layout.grid-ca-archive > .item-grid .text_position {
        position: relative; }
      .grid-flexbox-layout.grid-ca-archive > .item-grid .text_full {
        background-color: white;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding-top: 5px;
        display: none; }
      .grid-flexbox-layout.grid-ca-archive > .item-grid .more {
        -webkit-transition: opacity 0.4s ease-out;
        transition: opacity 0.4s ease-out;
        opacity: 0; }
      .grid-flexbox-layout.grid-ca-archive > .item-grid:hover .more {
        opacity: 1; }
      .grid-flexbox-layout.grid-ca-archive > .item-grid:hover .thumb-text {
        text-decoration: underline; }
      .grid-flexbox-layout.grid-ca-archive > .item-grid:hover .text_full {
        display: block; }
    .grid-flexbox-layout.grid-ca-archive.grid-cr-browse > .item-grid {
      padding-top: 0px; }
      .grid-flexbox-layout.grid-ca-archive.grid-cr-browse > .item-grid:before {
        display: none; }
      .grid-flexbox-layout.grid-ca-archive.grid-cr-browse > .item-grid .text {
        min-height: auto; }
      .grid-flexbox-layout.grid-ca-archive.grid-cr-browse > .item-grid.item-large {
        width: 100%; }
      @media (min-width: 768px) and (max-width: 1025px) {
        .grid-flexbox-layout.grid-ca-archive.grid-cr-browse > .item-grid {
          width: calc( (100% - 2*50px)/3);
          margin-bottom: 0; }
          .grid-flexbox-layout.grid-ca-archive.grid-cr-browse > .item-grid.item-large {
            width: calc( 2*((100% - 2*50px)/3) + 50px); } }
      @media (min-width: 1025px) {
        .grid-flexbox-layout.grid-ca-archive.grid-cr-browse > .item-grid {
          width: calc( (100% - 3*50px)/4);
          margin-bottom: 0; }
          .grid-flexbox-layout.grid-ca-archive.grid-cr-browse > .item-grid.item-large {
            width: calc( 2*((100% - 3*50px)/4) + 50px); } }
      @media (min-width: 1400px) {
        .grid-flexbox-layout.grid-ca-archive.grid-cr-browse > .item-grid {
          width: calc( (100% - 4*50px)/5);
          margin-bottom: 0; }
          .grid-flexbox-layout.grid-ca-archive.grid-cr-browse > .item-grid.item-large {
            width: calc( 2*((100% - 4*50px)/5) + 50px); } }
      @media (min-width: 1800px) {
        .grid-flexbox-layout.grid-ca-archive.grid-cr-browse > .item-grid {
          width: calc( (100% - 5*50px)/6);
          margin-bottom: 0; }
          .grid-flexbox-layout.grid-ca-archive.grid-cr-browse > .item-grid.item-large {
            width: calc( 2*((100% - 5*50px)/6) + 50px); } }

.item-table-2 .col {
  margin-bottom: 30px; }

@media (min-width: 768px) {
  .item-table-2 {
    display: table;
    table-layout: fixed;
    width: 100%; }
    .item-table-2 .col {
      display: table-cell;
      vertical-align: middle;
      width: 50%;
      margin-bottom: 0;
      position: relative; }
      .item-table-2 .col.align-top {
        vertical-align: top; }
      .item-table-2 .col.align-bottom {
        vertical-align: bottom; }
      .item-table-2 .col.size-quarter {
        width: 25%; }
      .item-table-2 .col.size-half {
        width: 50%; }
      .item-table-2 .col.size-wide {
        width: 65%; }
      .item-table-2 .col.size-narrow {
        width: 35%; }
      .item-table-2 .col:first-child {
        padding-right: 25px; }
      .item-table-2 .col:not(:first-child) {
        padding-left: 25px; } }

@media (min-width: 1400px) {
  .item-table-2 .col:first-child {
    padding-right: 40px; }
  .item-table-2 .col:not(:first-child) {
    padding-left: 40px; } }

@media (min-width: 1800px) {
  .item-table-2 .col:first-child {
    padding-right: 50px; }
  .item-table-2 .col:not(:first-child) {
    padding-left: 50px; } }

.content-tabs .tab {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: -999px;
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out; }
  .content-tabs .tab.selected {
    top: 0px;
    position: relative;
    opacity: 1;
    visibility: visible; }

.spinner {
  margin: 0px auto 0;
  width: 70px;
  margin-top: 20px; }

.spinner > div {
  width: 8px;
  height: 8px;
  background-color: #000;
  margin: 0 2px;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both; }

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s; }

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s; }

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0); }
  40% {
    -webkit-transform: scale(1); } }

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

.slider-container {
  position: relative;
  /* Fade Captions */ }
  .slider-container.has-dots {
    margin-bottom: 40px; }
  .slider-container.fade-captions ul.captions {
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-top: 40px;
    text-align: center;
    color: #999;
    min-height: 40px; }
    .slider-container.fade-captions ul.captions li {
      display: none; }
      .slider-container.fade-captions ul.captions li.current {
        display: block; }

.slider-horizontal {
  position: relative;
  min-height: 200px; }
  .slider-horizontal .slick-slide {
    float: left;
    width: 100vw;
    margin: 0px; }
    @media (min-width: 768px) {
      .slider-horizontal .slick-slide {
        width: 27%;
        max-width: 540px;
        margin: 0 0 0 20px; } }
    @media (min-width: 1025px) {
      .slider-horizontal .slick-slide {
        width: 27%;
        margin: 0 0 0 30px; } }
    .slider-horizontal .slick-slide .img-wrapper, .slider-horizontal .slick-slide .image_wrapper.autosize {
      line-height: 0px;
      padding-bottom: 56.1904761905%;
      background-color: #F2F2F2; }
    .slider-horizontal .slick-slide .story-text {
      margin-top: 10px; }
      @media (max-width: 768px) {
        .slider-horizontal .slick-slide .story-text {
          padding: 0 20px; } }
      @media (min-width: 768px) {
        .slider-horizontal .slick-slide .story-text {
          height: 85px; } }

.slider-voices {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 40px; }
  @media (max-width: 767px) {
    .slider-voices {
      margin-left: -20px;
      margin-right: -20px; } }
  .slider-voices .slick-slider .slick-list {
    padding-bottom: 60px; }
  @media (min-width: 768px) {
    .slider-voices .slick-slider .slick-list {
      padding-bottom: 0px; } }
  .slider-voices .slick-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative; }
    @media (min-width: 768px) {
      .slider-voices .slick-slide a {
        color: #fff; } }
  .slider-voices .slick-slide .img-wrapper, .slider-voices .slick-slide .image_wrapper.autosize {
    padding-bottom: 66.7049368542%;
    position: relative; }
  .slider-voices .slick-slide .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    background-image: url(../img/black-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-repeat: repeat-x;
    background-size: 100% 80px;
    background-position: left bottom; }
    @media (min-width: 768px) {
      .slider-voices .slick-slide .overlay {
        color: #fff;
        background-size: 100% 201px; } }
    .slider-voices .slick-slide .overlay .play-audio-slideshow {
      position: absolute;
      bottom: 20px;
      left: 20px;
      opacity: 0.85;
      -webkit-transition: opacity 0.2s ease-out;
      transition: opacity 0.2s ease-out; }
      .slider-voices .slick-slide .overlay .play-audio-slideshow svg {
        width: 50px;
        height: 50px;
        display: inline-block;
        vertical-align: middle; }
      .slider-voices .slick-slide .overlay .play-audio-slideshow .eyebrow-text {
        display: inline-block;
        vertical-align: middle;
        margin-left: 10px;
        color: #fff; }
      @media (min-width: 768px) {
        .slider-voices .slick-slide .overlay .play-audio-slideshow {
          left: auto;
          bottom: 20px;
          right: 20px; }
          .slider-voices .slick-slide .overlay .play-audio-slideshow svg {
            width: 20px;
            height: 20px; } }
    .slider-voices .slick-slide .overlay .text {
      position: absolute;
      width: 100%;
      bottom: -60px;
      text-align: center; }
      .slider-voices .slick-slide .overlay .text .title {
        font-family: 'H-medium';
        font-size: 18px;
        line-height: 28px; }
      .slider-voices .slick-slide .overlay .text .author {
        font-family: 'H-Medium';
        font-size: 14px;
        line-height: 22px; }
      @media (min-width: 768px) {
        .slider-voices .slick-slide .overlay .text {
          text-align: left;
          left: 100px;
          bottom: 20px;
          width: 80%; }
          .slider-voices .slick-slide .overlay .text .title {
            font-family: 'H-book';
            font-size: 30px; }
          .slider-voices .slick-slide .overlay .text .author {
            margin-top: 10px;
            font-family: 'H-medium';
            font-size: 18px;
            color: #fff; } }
    .slider-voices .slick-slide .overlay:hover .play-audio-slideshow {
      opacity: 1; }
  @media (min-width: 768px) {
    .slider-voices.slider-voices-80 .slick-slide .overlay .text {
      left: 120px; } }
  .slider-voices .arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100px;
    height: 200px;
    cursor: pointer;
    visibility: hidden; }
    .slider-voices .arrow svg {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate3d(-50%, -50%, 0);
              transform: translate3d(-50%, -50%, 0); }
    .slider-voices .arrow.arrow-left {
      left: -100px; }
    .slider-voices .arrow.arrow-right {
      right: -100px; }

.page-template-page-ideas-voices .slider-voices {
  max-width: none; }
  @media (max-width: 767px) {
    .page-template-page-ideas-voices .slider-voices {
      margin-left: 0px;
      margin-right: 0px; } }
  @media (min-width: 768px) {
    .page-template-page-ideas-voices .slider-voices .slick-slider .slick-slide .img-wrapper-img {
      padding-bottom: 0px;
      height: 65vh; } }
  .page-template-page-ideas-voices .slider-voices .slick-slider .slick-slide .overlay .play-audio-slideshow {
    visibility: hidden; }
  .page-template-page-ideas-voices .slider-voices .slick-slider .slick-slide .overlay .text {
    width: 100%;
    padding: 0px 20px;
    left: 0px;
    bottom: 30px;
    text-align: center;
    color: #fff;
    text-shadow: 0px 2px 1px rgba(51, 50, 48, 0.5); }
    .page-template-page-ideas-voices .slider-voices .slick-slider .slick-slide .overlay .text .title {
      line-height: 38px; }
    .page-template-page-ideas-voices .slider-voices .slick-slider .slick-slide .overlay .text .author {
      line-height: 24px; }

.hero-image-slider .img-wrapper, .hero-image-slider .image_wrapper.autosize {
  padding-bottom: 66.3043478261%;
  /*
        padding-bottom: 0px;
        height: 50vh;
        .bg-image{
            background-size: contain;
        }
        */ }

.hero-image-slider .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  background-image: url(../img/bg-overlay.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 73px; }
  @media (min-width: 768px) {
    .hero-image-slider .overlay {
      background-size: 100% 162px; } }
  .hero-image-slider .overlay .text {
    position: absolute;
    width: 100%;
    bottom: 20px;
    text-align: center;
    color: #fff; }
    @media (min-width: 768px) {
      .hero-image-slider .overlay .text {
        bottom: 50px; } }

#gdpr-bar {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  bottom: 0px;
  z-index: 117;
  background-color: #fff;
  text-align: center;
  height: 50px;
  border-top: 1px solid #CDCDCD;
  padding: 0px 50px 0px 0px;
  font-size: 13px;
  line-height: 16px;
  color: #333230;
  font-family: 'NH-Display-55', 'Helvetica', 'Arial', sans-serif;
  width: 100%;
  position: fixed; }
  #gdpr-bar.active {
    visibility: visible;
    opacity: 1; }
  @media (min-width: 768px) {
    #gdpr-bar {
      line-height: 26px; } }
  #gdpr-bar > p {
    margin: 0; }
  #gdpr-bar span {
    color: #999; }
  #gdpr-bar a {
    color: #333230;
    text-decoration: underline; }
    #gdpr-bar a:hover {
      text-decoration: none; }
  #gdpr-bar .close-icon {
    position: absolute;
    width: 100px;
    height: 50px;
    cursor: pointer;
    right: 0px;
    top: 0px; }
    #gdpr-bar .close-icon svg {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }

#notice-alert {
  position: absolute;
  width: 100%;
  top: 0px;
  z-index: 170;
  overflow: hidden;
  background-color: #404040;
  color: #fff;
  font-size: 13px;
  line-height: 18px;
  font-family: 'NH-Text-55', 'Helvetica', 'Arial', sans-serif;
  letter-spacing: 0.25px;
  text-align: center;
  height: 94px;
  padding: 0px 20px;
  padding-top: 5px; }
  #notice-alert a {
    color: #fff;
    text-decoration: underline; }
    #notice-alert a:hover {
      text-decoration: none; }
  @media (min-width: 768px) {
    #notice-alert {
      height: 50px; } }

.widget-pagination {
  border-top: 1px solid #CDCDCD;
  padding-top: 20px;
  padding-bottom: 20px; }
  .widget-pagination .layout-2 {
    content: "";
    display: table;
    table-layout: fixed;
    width: 100%; }
    .widget-pagination .layout-2 .col {
      position: relative;
      width: calc( ( 100% - 20px )/2);
      display: inline-block; }
      .widget-pagination .layout-2 .col:first-child {
        float: left; }
      .widget-pagination .layout-2 .col:last-child {
        float: right;
        text-align: right; }
      .widget-pagination .layout-2 .col ul {
        margin: 0;
        padding: 0;
        list-style-type: none; }
        .widget-pagination .layout-2 .col ul li {
          display: inline-block;
          vertical-align: middle; }
          .widget-pagination .layout-2 .col ul li:first-child {
            margin-right: 20px; }
          .widget-pagination .layout-2 .col ul li:last-child {
            margin-right: 0px; }

.module_accordion {
  border-top: 1px solid #CDCDCD; }
  .module_accordion .item {
    position: relative;
    padding-top: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #CDCDCD; }
    .module_accordion .item .trigger {
      background: no-repeat url("../img/icon_plus.svg");
      background-position: right 3px;
      cursor: pointer;
      padding-right: 38px; }
      .module_accordion .item .trigger.small {
        background-image: url("../img/icon_plus_small.svg"); }
    .module_accordion .item.open .trigger {
      background-image: url("../img/icon_minus.svg"); }
      .module_accordion .item.open .trigger.small {
        background-image: url("../img/icon_minus_small.svg"); }
    .module_accordion .item .details {
      max-height: 0px;
      overflow: hidden; }
      .module_accordion .item .details .inner {
        margin-top: 23px;
        margin-bottom: 20px; }
        @media (min-width: 1025px) {
          .module_accordion .item .details .inner {
            margin-right: 50px; } }

.module_pageheader {
  background-color: #fff;
  border-bottom: 1px solid #CDCDCD;
  padding: 11px 0 11px 0;
  position: relative;
  z-index: 119;
  position: relative;
  background-color: #fff; }
  .module_pageheader .mobile {
    position: relative; }
    .module_pageheader .mobile .arrow {
      background-image: url(../img/arrow_dropdown.png);
      background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url(../img/arrow_dropdown.svg);
      background-image: linear-gradient(transparent, transparent), url(../img/arrow_dropdown.svg);
      background-repeat: no-repeat;
      background-size: contain;
      background-size: 12px auto;
      background-position: right 2px center; }
      .module_pageheader .mobile .arrow .ie9 {
        background-image: url(../img/arrow_dropdown.png); }
    .module_pageheader .mobile SELECT {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      opacity: 0; }

.module_page_section_nav {
  border-bottom: 1px solid #CDCDCD;
  text-align: center;
  background-color: #fff;
  padding: 18px 0 17px 0; }
  .module_page_section_nav UL {
    list-style: none;
    white-space: nowrap;
    margin: 0; }
  .module_page_section_nav LI {
    list-style-type: none;
    display: inline-block; }
  .module_page_section_nav A {
    color: #999;
    margin: 0 20px; }
    .module_page_section_nav A.current {
      color: #333230; }

.module_logos .logo {
  display: inline-block;
  margin-right: 20px;
  vertical-align: middle; }
  .module_logos .logo IMG {
    display: inline-block;
    max-width: 100px;
    vertical-align: middle; }
    @media (min-width: 1025px) {
      .module_logos .logo IMG {
        max-width: 160px; } }

.module_language_select {
  position: relative; }
  @media (min-width: 1025px) {
    .module_language_select {
      top: 0;
      right: 0;
      position: absolute;
      display: inline-block;
      z-index: 1; } }
  .module_language_select .trigger {
    cursor: pointer;
    background-image: url(../img/arrow_dropdown.png);
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url(../img/arrow_dropdown.svg);
    background-image: linear-gradient(transparent, transparent), url(../img/arrow_dropdown.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 8px auto;
    background-position: right 0 center;
    padding-right: 15px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
    .module_language_select .trigger .ie9 {
      background-image: url(../img/arrow_dropdown.png); }
    .module_language_select .trigger:hover {
      color: #000; }
  .module_language_select .window {
    background-color: white;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
    padding: 7px 10px;
    width: 100%;
    min-width: 150px;
    position: absolute;
    top: 22px;
    right: 0;
    z-index: 1;
    display: none; }
    .module_language_select .window A {
      display: block;
      padding: 4px; }
      .module_language_select .window A:hover {
        text-decoration: underline; }
    .module_language_select .window .detect {
      display: none; }
  .module_language_select #google_translate_element {
    display: none; }

HTML.translated-rtl BODY,
HTML.translated-ltr BODY {
  top: 0 !important; }

.module_page_list .pages A {
  display: inline-block;
  margin: 0 20px; }
  @media (min-width: 768px) {
    .module_page_list .pages A {
      margin: 0 30px; } }

.module_map_embed {
  position: relative;
  padding-bottom: 125%;
  background-color: #F2F2F2;
  height: 0;
  overflow: hidden; }
  .module_map_embed .map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
    .module_map_embed .map > DIV {
      background-color: transparent !important; }
  .module_map_embed .map_label {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap;
    width: auto;
    padding: 3px 4px;
    font-size: 10px; }
  @media (min-width: 768px) and (max-width: 1025px) {
    .module_map_embed {
      padding-bottom: 100%; } }

.module_bottom_promo {
  background-color: #404040;
  color: #fff; }
  @media (min-width: 1025px) {
    .module_bottom_promo .wrapper {
      max-width: 25vw; } }
  .module_bottom_promo .image .wrapper {
    margin-left: auto; }
  .module_bottom_promo A.text {
    text-decoration: underline; }
    .module_bottom_promo A.text:hover {
      color: inherit;
      text-decoration: none; }
  .module_bottom_promo BUTTON,
  .module_bottom_promo INPUT[type="button"],
  .module_bottom_promo INPUT[type="reset"],
  .module_bottom_promo INPUT[type="submit"],
  .module_bottom_promo .button {
    color: white; }

.add-to-calendar > SPAN {
  display: none; }

.add-to-calendar .add-to-calendar-widget {
  margin: 0; }

.add-to-calendar .add-to-calendar-label {
  color: #999;
  padding-left: 27px;
  padding-top: 4px;
  padding-bottom: 4px;
  display: inline-block;
  background-size: 22px auto !important;
  background-position: left 0 center;
  border-radius: 0;
  box-shadow: none !important;
  font-size: 12px;
  background-image: url(../img/icon_circle_add.png);
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url(../img/icon_circle_add.svg);
  background-image: linear-gradient(transparent, transparent), url(../img/icon_circle_add.svg);
  background-repeat: no-repeat;
  background-size: contain; }
  .add-to-calendar .add-to-calendar-label .ie9 {
    background-image: url(../img/icon_circle_add.png); }

.add-to-calendar .add-to-calendar-dropdown {
  border-radius: 0;
  font-size: 14px;
  padding: 20px 25px 20px 20px; }
  .add-to-calendar .add-to-calendar-dropdown A {
    line-height: 26px; }

.add-to-calendar .add-to-calendar-checkbox + div.add-to-calendar-dropdown a:before {
  position: relative;
  top: 2px;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%); }

.module_divider {
  border-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

main.wrap-modules {
  padding-top: 0px; }
  main.wrap-modules .module {
    background-color: transparent; }

.feature-module.module-hero .table-2-not-tablet .col {
  position: relative; }
  .feature-module.module-hero .table-2-not-tablet .col:first-child .img-wrapper, .feature-module.module-hero .table-2-not-tablet .col:first-child .image_wrapper.autosize {
    padding-bottom: 0px;
    height: calc( 100vh - 110px - 51px); }
    @media (max-width: 1024px) and (orientation: portrait) {
      .feature-module.module-hero .table-2-not-tablet .col:first-child .img-wrapper, .feature-module.module-hero .table-2-not-tablet .col:first-child .image_wrapper.autosize {
        height: calc( 100vh - 60px - 140px); } }
    @media (max-width: 1024px) and (orientation: landscape) {
      .feature-module.module-hero .table-2-not-tablet .col:first-child .img-wrapper, .feature-module.module-hero .table-2-not-tablet .col:first-child .image_wrapper.autosize {
        height: calc( 120vh); } }
  @media (max-width: 1024px) {
    .feature-module.module-hero .table-2-not-tablet .col:last-child .text {
      padding-top: 40px; } }
  .feature-module.module-hero .table-2-not-tablet .col:last-child .number {
    position: absolute;
    width: 100%;
    top: 40px; }
    @media (max-width: 1024px) {
      .feature-module.module-hero .table-2-not-tablet .col:last-child .number {
        position: relative;
        top: auto;
        margin-top: 20px; } }
  .feature-module.module-hero .table-2-not-tablet .col:last-child .text {
    max-width: 620px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px; }

.feature-module.module-hero .full-bleed {
  position: relative; }
  @media (max-width: 1024px) and (orientation: landscape) {
    .feature-module.module-hero .full-bleed.img-wrapper, .feature-module.module-hero .full-bleed.image_wrapper.autosize {
      height: calc( 100vh - 60px); } }
  .feature-module.module-hero .full-bleed .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-image: url(../img/bg-overlay-hero.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-repeat: repeat-x;
    background-position: left bottom;
    background-size: 4px 243px; }
    .feature-module.module-hero .full-bleed .overlay .text {
      position: absolute;
      width: 100%;
      bottom: 0px;
      color: #fff;
      text-align: center;
      padding: 0px 20px 3% 20px;
      text-shadow: 0px 2px 30px rgba(0, 0, 0, 0.8); }
      .feature-module.module-hero .full-bleed .overlay .text .date {
        margin-top: 1%; }
      .feature-module.module-hero .full-bleed .overlay .text .off-site {
        color: #fff; }
      .feature-module.module-hero .full-bleed .overlay .text .location a {
        color: #fff; }
        .feature-module.module-hero .full-bleed .overlay .text .location a:hover {
          color: #fff;
          text-decoration: underline; }

.feature-module.module-hero .off-site {
  margin-bottom: 20px; }

.feature-module.module-hero .date {
  margin-top: 20px !important; }

.feature-module.module-hero .location a {
  color: #888888; }
  .feature-module.module-hero .location a:hover {
    text-decoration: underline; }

.feature-module.module-text .title, .feature-module.module-credits .title, .feature-module.module-text-w-aside .title {
  font-family: 'Saboon-Bold', 'Times New Roman', 'Times', serif; }

.feature-module.module-text .text.drop-cap p:first-child:first-letter, .feature-module.module-credits .text.drop-cap p:first-child:first-letter, .feature-module.module-text-w-aside .text.drop-cap p:first-child:first-letter {
  float: left;
  font-size: 60px;
  line-height: 60px;
  padding-top: 4px;
  padding-right: 8px;
  padding-left: 3px; }

.feature-module.module-credits .wysiwyg {
  color: #888888; }

@media (min-width: 768px) {
  .feature-module.module-text-w-aside .wrap-text-extra-large {
    content: "";
    display: table;
    table-layout: fixed; }
    .feature-module.module-text-w-aside .wrap-text-extra-large .wysiwyg {
      width: calc( 100% - 260px);
      float: left; }
    .feature-module.module-text-w-aside .wrap-text-extra-large aside {
      width: 240px;
      float: right; } }

@media (min-width: 1420px) {
  .feature-module.module-text-w-aside .wrap-text-extra-large {
    position: relative; }
    .feature-module.module-text-w-aside .wrap-text-extra-large .wysiwyg {
      width: 100%; }
    .feature-module.module-text-w-aside .wrap-text-extra-large aside {
      position: absolute;
      right: -270px; } }

.feature-module.module-text-w-aside aside {
  padding-top: 20px; }
  .feature-module.module-text-w-aside aside .list {
    margin: 0;
    padding: 0;
    list-style-type: none; }
    .feature-module.module-text-w-aside aside .list li {
      margin-bottom: 15px;
      line-height: 20px; }
      .feature-module.module-text-w-aside aside .list li a {
        color: #888888; }
        .feature-module.module-text-w-aside aside .list li a:hover {
          color: #000; }
      .feature-module.module-text-w-aside aside .list li .icon {
        display: inline-block;
        margin-right: 10px;
        vertical-align: middle; }

.feature-module.module-logos .logos {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: flex;
  /* or inline-flex */
  flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center; }
  .feature-module.module-logos .logos .img-sizer {
    height: 30px;
    margin-right: 20px; }
    .feature-module.module-logos .logos .img-sizer img {
      height: 100%;
      width: auto;
      opacity: 0.5;
      -webkit-transition: opacity 0.2s ease-out;
      transition: opacity 0.2s ease-out; }
    @media (min-width: 1025px) {
      .feature-module.module-logos .logos .img-sizer {
        height: 45px; } }
  .feature-module.module-logos .logos a:hover img {
    opacity: 1; }

.feature-module.module-video .caption-text, .feature-module.module-video .checkbox label, .checkbox .feature-module.module-video label, .feature-module.module-video body .SumoSelect, body .feature-module.module-video .SumoSelect, .feature-module.module-video A.icon, .feature-module.module-video .img-wrapper .caption, .img-wrapper .feature-module.module-video .caption, .feature-module.module-video .image_wrapper.autosize .caption, .image_wrapper.autosize .feature-module.module-video .caption {
  margin-top: 10px; }

.feature-module.module-image-grid .grid-packery .gutter-sizer {
  width: 20px; }

.feature-module.module-image-grid .grid-packery > .item-grid {
  width: calc( (100% - 20px)/2); }

@media (min-width: 768px) {
  .feature-module.module-image-grid .grid-packery .gutter-sizer {
    width: 30px; }
  .feature-module.module-image-grid .grid-packery > .item-grid {
    width: calc( (100% - 1*6.7164179104%)/2); } }

.feature-module.module-image-grid .grid-packery > .item-grid {
  margin-bottom: 0; }
  .feature-module.module-image-grid .grid-packery > .item-grid .img.vertical {
    width: 60%;
    display: inline-block; }
  .feature-module.module-image-grid .grid-packery > .item-grid.left {
    text-align: right; }

.feature-module.module-image-grid .caption-text, .feature-module.module-image-grid .checkbox label, .checkbox .feature-module.module-image-grid label, .feature-module.module-image-grid body .SumoSelect, body .feature-module.module-image-grid .SumoSelect, .feature-module.module-image-grid A.icon, .feature-module.module-image-grid .img-wrapper .caption, .img-wrapper .feature-module.module-image-grid .caption, .feature-module.module-image-grid .image_wrapper.autosize .caption, .image_wrapper.autosize .feature-module.module-image-grid .caption {
  margin-top: 30px; }

.feature-module.module-image-full-bleed .caption {
  margin-top: 10px; }

.feature-module.module-image-w-text .item-table-2 .col:last-child .wrap-text-large, .feature-module.module-image-w-text .item-table-2 .col:last-child .wrap-text {
  margin: 0 !important; }

@media (min-width: 768px) {
  .feature-module.module-image-w-text .item-table-2 .col:first-child {
    text-align: right; }
    .feature-module.module-image-w-text .item-table-2 .col:first-child .slider-container {
      display: inline-block;
      width: 80%; } }

.feature-module.module-image-carousel .subheadline-s {
  margin-bottom: 25px; }

.feature-module.module-image-carousel .slideshow-carousel .arrow.left svg {
  left: 20px; }

.feature-module.module-image-carousel .slideshow-carousel .arrow.right svg {
  right: 20px; }

.feature-module.module-image-carousel .img-sizer {
  height: 260px;
  margin: 0px 10px; }
  @media (min-width: 1025px) {
    .feature-module.module-image-carousel .img-sizer {
      height: 380px;
      margin: 0px 15px; } }
  .feature-module.module-image-carousel .img-sizer img {
    height: 100%;
    max-width: none;
    width: auto;
    margin: 0; }

.feature-module.module-image-carousel .caption {
  margin-top: 40px; }

@media (min-width: 1025px) {
  .feature-module.module-related-events .upcoming-events-module-flex .table-half .table-col:first-child {
    width: 120px; } }

@media (max-width: 767px) {
  .feature-module.module-related-products .slider-container {
    margin-left: 20px;
    margin-right: 40px;
    text-align: center; }
    .feature-module.module-related-products .slider-container .button {
      margin-top: 20px; }
  .feature-module.module-related-products .table-2-not-mobile .col:first-child {
    margin-bottom: 20px; } }

@media (min-width: 768px) {
  .feature-module.module-related-products .table-2-not-mobile .col:first-child {
    padding-right: 15px; }
  .feature-module.module-related-products .table-2-not-mobile .col:last-child {
    padding-left: 15px; }
  .feature-module.module-related-products .table-2-not-mobile .col .button {
    margin-top: 40px; } }

.feature-module.module-related-products .slider-container {
  margin-top: 30px; }
  .feature-module.module-related-products .slider-container .slick-slide .img-wrapper, .feature-module.module-related-products .slider-container .slick-slide .image_wrapper.autosize {
    background-color: #A1A09E; }
    .feature-module.module-related-products .slider-container .slick-slide .img-wrapper img, .feature-module.module-related-products .slider-container .slick-slide .image_wrapper.autosize img {
      padding: 15px; }
  .feature-module.module-related-products .slider-container .slick-slide .title {
    margin-bottom: 5px; }

.feature-module .line {
  height: 1px;
  background-color: #CDCDCD; }
  .feature-module .line.border-top {
    margin-bottom: 30px; }
  .feature-module .line.border-bottom {
    margin-top: 65px; }

.feature-module:last-child .line.border-bottom {
  visibility: hidden; }

.single-exhibition .feature-module.module-image-carousel .img-sizer {
  height: 260px; }
  @media (min-width: 1025px) {
    .single-exhibition .feature-module.module-image-carousel .img-sizer {
      height: 500px; } }

.overlay-window {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  position: fixed;
  z-index: 9000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden; }
  .overlay-window .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.6); }
  .overlay-window .overlay-content {
    box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
    width: 100%;
    min-height: 300px;
    max-height: 100%;
    max-width: calc(100vw - 50px);
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    pointer-events: all;
    background-color: white; }
    @media (min-width: 1025px) {
      .overlay-window .overlay-content {
        max-width: 700px; } }
    .overlay-window .overlay-content .close-window {
      position: absolute;
      width: 20px;
      height: 20px;
      right: 20px;
      top: 20px;
      cursor: pointer;
      background-color: red;
      background: no-repeat url("../img/icon_close.svg") 0 0;
      background-size: 100% auto; }
    .overlay-window .overlay-content .content-scroll {
      position: relative; }
      @media (max-width: 767px) {
        .overlay-window .overlay-content .content-scroll {
          overflow-x: hidden;
          overflow-y: auto;
          -webkit-overflow-scrolling: touch; } }
    .overlay-window .overlay-content .inner {
      padding: 30px;
      overflow: hidden; }
      @media (min-width: 1025px) {
        .overlay-window .overlay-content .inner {
          padding: 50px; } }

.overlay-window-interim {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  position: fixed;
  z-index: 8999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden; }
  .overlay-window-interim .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-color: #E7E6E1; }
  .overlay-window-interim .close {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    top: 0;
    cursor: pointer; }
    .overlay-window-interim .close svg {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate3d(-50%, -50%, 0);
              transform: translate3d(-50%, -50%, 0);
      width: 16px;
      height: 16px; }
    @media (min-width: 768px) {
      .overlay-window-interim .close {
        width: 60px;
        height: 60px; }
        .overlay-window-interim .close svg {
          margin-left: 10px;
          margin-top: -10px; } }
    .overlay-window-interim .close .hide-for-mobile {
      display: inline-block;
      font-size: 16px;
      color: #979797;
      -webkit-transition: color 0.3s ease-out;
      transition: color 0.3s ease-out;
      padding: 20px 0px; }
    .overlay-window-interim .close:hover .hide-for-mobile {
      color: #333230; }
  .overlay-window-interim .content {
    position: relative;
    height: 100%; }
    .overlay-window-interim .content .monograme {
      visibility: hidden; }
    @media (min-width: 768px) {
      .overlay-window-interim .content .monograme {
        visibility: visible;
        position: absolute;
        bottom: 20px;
        right: 20px; } }
    @media only screen and (min-device-width: 320px) and (max-device-width: 1023px) and (orientation: landscape) {
      .overlay-window-interim .content .close .show-for-mobile {
        display: block !important;
        visibility: visible; }
      .overlay-window-interim .content .close .hide-for-mobile {
        display: none !important; }
      .overlay-window-interim .content .monograme {
        visibility: hidden; } }

#project-window .content hr {
  max-width: 580px;
  padding: 0 20px;
  width: 100%;
  top: 67px;
  position: absolute;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  visibility: hidden;
  border-color: #CDCDCD; }

#project-window .content .project-title {
  position: absolute;
  width: 100%;
  padding: 0px 20px;
  text-align: center;
  top: 10px;
  font-size: 18px;
  line-height: 21px; }
  @media (min-width: 767px) {
    #project-window .content .project-title {
      font-size: calc(1.1627906977vw + 9.0813953488px); } }
  @media (min-width: 1025px) {
    #project-window .content .project-title {
      font-size: 21px; } }
  @media (min-width: 767px) {
    #project-window .content .project-title {
      line-height: calc(5.0387596899vw - 17.6472868217px); } }
  @media (min-width: 1025px) {
    #project-window .content .project-title {
      line-height: 34px; } }

#project-window .content ul.captions {
  margin: 0;
  padding: 0;
  height: 50px;
  overflow: hidden;
  position: absolute;
  bottom: -70px;
  width: 100%; }
  #project-window .content ul.captions li {
    margin-top: 20px;
    padding: 0px 10px; }

#project-window .content .slider-container {
  top: 80px; }
  #project-window .content .slider-container .img-wrapper, #project-window .content .slider-container .image_wrapper.autosize, #project-window .content .slider-container .slide-text {
    padding-bottom: 0;
    height: calc( 100vh - 2*80px); }
  #project-window .content .slider-container .slide-text .text-table {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%; }
    #project-window .content .slider-container .slide-text .text-table .text-col {
      display: table-cell;
      vertical-align: middle; }

@media (min-width: 768px) {
  #project-window .content .slick-slider {
    margin: 0px 40px; }
  #project-window .content ul.captions li {
    padding: 0px 65px; }
  #project-window .content .line {
    visibility: visible; } }

@media only screen and (min-device-width: 320px) and (max-device-width: 1023px) and (orientation: landscape) {
  #project-window .content .project-title {
    visibility: hidden; }
  #project-window .content .slider-container {
    top: 0px; }
    #project-window .content .slider-container .img-wrapper, #project-window .content .slider-container .image_wrapper.autosize, #project-window .content .slider-container .slide-text {
      height: 100vh; }
  #project-window .content ul.captions {
    text-align: right;
    bottom: 0px; }
    #project-window .content ul.captions li {
      padding: 0; }
  #project-window .content .line {
    visibility: hidden; }
  #project-window .content .arrow-special {
    display: none !important; } }

#project-window .content .caption-text, #project-window .content .checkbox label, .checkbox #project-window .content label, #project-window .content body .SumoSelect, body #project-window .content .SumoSelect, #project-window .content A.icon, #project-window .content .img-wrapper .caption, .img-wrapper #project-window .content .caption, #project-window .content .image_wrapper.autosize .caption, .image_wrapper.autosize #project-window .content .caption {
  color: #333230;
  font-size: 16px; }

#project-window .content .swipe-alert {
  position: absolute;
  bottom: 40px;
  width: 100%;
  text-align: center;
  color: #999999; }
  #project-window .content .swipe-alert ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out; }
    #project-window .content .swipe-alert ul li {
      display: inline-block;
      vertical-align: middle; }
      #project-window .content .swipe-alert ul li svg {
        vertical-align: middle; }
      #project-window .content .swipe-alert ul li:nth-child(2) {
        padding: 0px 60px; }
  #project-window .content .swipe-alert.hide ul {
    opacity: 0; }

#page-window {
  /********************* STRUCTURE *****************************/ }
  #page-window .content .inner {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; }
    #page-window .content .inner .content-scroll {
      padding-bottom: 40px; }
  #page-window .table-3-not-mobile {
    max-width: 1180px;
    margin: 0 auto;
    margin-top: 20px; }
  @media (min-width: 768px) {
    #page-window .inner.wrap, #page-window .inner.wrap-all, #page-window .inner#logo-home, #page-window #main-header .inner#menu-wrap, #main-header #page-window .inner#menu-wrap {
      margin: 0px 80px; } }
  #page-window header {
    padding-bottom: 20px; }
    #page-window header h1 {
      padding-top: 60px;
      padding-bottom: 25px; }
  @media (min-width: 768px) {
    #page-window header {
      padding-bottom: 80px; }
      #page-window header h1 {
        padding-top: 120px;
        padding-bottom: 30px; }
    #page-window .table-3-not-mobile {
      margin-top: 60px; } }
  @media only screen and (min-device-width: 320px) and (max-device-width: 1023px) and (orientation: landscape) {
    #page-window header {
      padding-bottom: 20px; }
      #page-window header h1 {
        padding-top: 60px;
        padding-bottom: 25px; }
    #page-window .table-3-not-mobile {
      margin-top: 20px; } }
  #page-window.projects-list header {
    text-align: center;
    padding-bottom: 30px; }
  #page-window.projects-list .legacy-link {
    padding-top: 30px; }
    #page-window.projects-list .legacy-link a {
      font-size: 11px;
      line-height: 36px;
      text-transform: uppercase;
      letter-spacing: 2.2px;
      color: #979797; }
      @media (min-width: 767px) {
        #page-window.projects-list .legacy-link a {
          font-size: calc(0.1579778831vw + 9.7883096367px); } }
      @media (min-width: 1400px) {
        #page-window.projects-list .legacy-link a {
          font-size: 12px; } }
      @media (min-width: 767px) {
        #page-window.projects-list .legacy-link a {
          line-height: calc(0vw + 36px); } }
      @media (min-width: 1400px) {
        #page-window.projects-list .legacy-link a {
          line-height: 36px; } }
  #page-window.projects-list ul.projects-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #CDCDCD;
    max-width: 1280px;
    margin: 0 auto; }
    #page-window.projects-list ul.projects-list li {
      border-bottom: 1px solid #CDCDCD;
      -webkit-transition: background-color 0.3s ease-out;
      transition: background-color 0.3s ease-out; }
      #page-window.projects-list ul.projects-list li .inner-li {
        padding: 15px 0px; }
      #page-window.projects-list ul.projects-list li a {
        display: block; }
      #page-window.projects-list ul.projects-list li .title {
        font-size: 18px;
        line-height: 34px; }
        @media (min-width: 767px) {
          #page-window.projects-list ul.projects-list li .title {
            font-size: calc(0.7751937984vw + 12.0542635659px); } }
        @media (min-width: 1025px) {
          #page-window.projects-list ul.projects-list li .title {
            font-size: 20px; } }
        @media (min-width: 767px) {
          #page-window.projects-list ul.projects-list li .title {
            line-height: calc(0.7751937984vw + 28.0542635659px); } }
        @media (min-width: 1025px) {
          #page-window.projects-list ul.projects-list li .title {
            line-height: 36px; } }
      #page-window.projects-list ul.projects-list li .small {
        font-size: 11px;
        line-height: 36px;
        text-transform: uppercase;
        letter-spacing: 2.2px;
        color: #979797; }
        @media (min-width: 767px) {
          #page-window.projects-list ul.projects-list li .small {
            font-size: calc(0.1579778831vw + 9.7883096367px); } }
        @media (min-width: 1400px) {
          #page-window.projects-list ul.projects-list li .small {
            font-size: 12px; } }
        @media (min-width: 767px) {
          #page-window.projects-list ul.projects-list li .small {
            line-height: calc(0vw + 36px); } }
        @media (min-width: 1400px) {
          #page-window.projects-list ul.projects-list li .small {
            line-height: 36px; } }
      #page-window.projects-list ul.projects-list li.active:hover {
        background-color: rgba(0, 0, 0, 0.05); }
    @media (max-width: 579px) {
      #page-window.projects-list ul.projects-list .inner-li .col:nth-child(2), #page-window.projects-list ul.projects-list .inner-li .col:last-child {
        display: inline-block; }
      #page-window.projects-list ul.projects-list .inner-li .col:last-child {
        margin-left: 0px;
        padding-left: 10px;
        position: relative; }
        #page-window.projects-list ul.projects-list .inner-li .col:last-child:after {
          content: '|';
          position: absolute;
          left: 0px;
          color: #CDCDCD; } }
    @media (min-width: 580px) {
      #page-window.projects-list ul.projects-list .inner-li {
        display: table;
        table-layout: fixed;
        width: 100%; }
        #page-window.projects-list ul.projects-list .inner-li .col {
          display: table-cell;
          width: 33%;
          vertical-align: middle; } }

#theme-enlarge-window .bg {
  background-color: #404040; }

html.windows .overlay-window-interim .close {
  right: 40px;
  text-align: right; }

html.windows .overlay-window-interim .content .content-scroll {
  padding-right: 40px; }

html.windows .overlay-window-interim .content .monograme {
  right: 40px; }

.module_carousel {
  /* Next/Previous */
  /* Dots */
  /* Fade Captions */ }
  .module_carousel .carousel-main {
    overflow: hidden;
    padding-bottom: 30px;
    /* Height of dots */
    /* Cell */
    /* Enabled */ }
    .module_carousel .carousel-main .carousel-cell {
      width: 100%;
      float: left;
      margin-right: 20px; }
      .module_carousel .carousel-main .carousel-cell:not(:first-child) {
        display: none; }
    .module_carousel .carousel-main.flickity-enabled {
      overflow: visible; }
      .module_carousel .carousel-main.flickity-enabled .carousel-cell {
        display: block; }
  .module_carousel .flickity-button {
    background: transparent;
    opacity: 0.6;
    cursor: pointer;
    border-radius: 0; }
    .module_carousel .flickity-button.next {
      right: 0; }
    .module_carousel .flickity-button.previous {
      left: 0; }
    .module_carousel .flickity-button .flickity-button-icon {
      fill: #999; }
    .module_carousel .flickity-button:hover {
      opacity: 1; }
  .module_carousel .flickity-page-dots {
    bottom: 0; }
  .module_carousel ul.captions {
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-top: 20px;
    text-align: center;
    color: #999;
    min-height: 40px; }
    .module_carousel ul.captions li {
      display: none; }
      .module_carousel ul.captions li.current {
        display: block; }

.module_carousel.archive_landing .carousel-cell {
  margin-right: 0; }
  .module_carousel.archive_landing .carousel-cell .caption {
    -webkit-transition: opacity 0.4s ease-out;
    transition: opacity 0.4s ease-out;
    opacity: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    margin-top: 50px;
    color: #999;
    max-width: 90%;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto; }
  .module_carousel.archive_landing .carousel-cell.is-selected .caption {
    opacity: 1; }

.module_carousel.archive_landing .flickity-page-dots {
  bottom: -10px; }

.module_carousel.archive_related .carousel-cell {
  width: 100%; }
  @media (min-width: 1025px) {
    .module_carousel.archive_related .carousel-cell .more {
      -webkit-transition: opacity 0.4s ease-out;
      transition: opacity 0.4s ease-out;
      opacity: 0; }
    .module_carousel.archive_related .carousel-cell:hover .more {
      opacity: 1; }
    .module_carousel.archive_related .carousel-cell:hover .thumb-text {
      text-decoration: underline; } }
  @media (max-width: 767px) {
    .module_carousel.archive_related .carousel-cell {
      padding: 20px; }
      .module_carousel.archive_related .carousel-cell .img-wrapper.archive_thumb, .module_carousel.archive_related .carousel-cell .archive_thumb.image_wrapper.autosize {
        padding-bottom: 60%; } }
  @media (min-width: 768px) and (max-width: 1025px) {
    .module_carousel.archive_related .carousel-cell {
      width: calc(100% / 5);
      margin-right: 30px; } }
  @media (min-width: 1025px) {
    .module_carousel.archive_related .carousel-cell {
      width: calc(100% / 6);
      margin-right: 50px; } }
  @media (min-width: 1400px) {
    .module_carousel.archive_related .carousel-cell {
      width: calc(100% / 7); } }
  @media (min-width: 1800px) {
    .module_carousel.archive_related .carousel-cell {
      width: calc(100% / 10); } }

.module_carousel.archive_related .flickity-button {
  top: 0;
  height: 100%;
  -webkit-transform: none;
          transform: none; }
  .module_carousel.archive_related .flickity-button .flickity-button-icon {
    width: 30px; }

#search-layer {
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  z-index: 200;
  width: 100%;
  height: 100%;
  top: 0px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out; }
  #search-layer .close-icon {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 17;
    cursor: pointer; }
    #search-layer .close-icon svg {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate3d(-50%, -50%, 0);
              transform: translate3d(-50%, -50%, 0); }
  #search-layer a:hover {
    text-decoration: underline; }
  #search-layer .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px; }

html.search-open #search-layer {
  opacity: 1;
  pointer-events: auto; }

#ss360-layer {
  display: none !important; }

#search-container {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  width: 100%; }
  #search-container HEADER {
    position: relative;
    margin-top: 100px;
    text-align: center;
    width: 100%; }
    @media (min-width: 1025px) {
      #search-container HEADER {
        margin-top: 250px; } }
  #search-container INPUT[type="text"] {
    width: 100%;
    font-family: 'NH-Text-55', 'Helvetica', 'Arial', sans-serif;
    font-size: 24px;
    line-height: 31px;
    padding: 10px 0px;
    color: #000;
    background: transparent;
    height: auto;
    border: 0;
    border-radius: 0px;
    border-bottom: 1px solid #999;
    text-transform: none;
    letter-spacing: 0;
    padding-right: 40px;
    background-image: url(../img/icon_search.png);
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url(../img/icon_search.svg);
    background-image: linear-gradient(transparent, transparent), url(../img/icon_search.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
    background-size: 16px 16px; }
    #search-container INPUT[type="text"] .ie9 {
      background-image: url(../img/icon_search.png); }
    @media (min-width: 1025px) {
      #search-container INPUT[type="text"] {
        width: 65.1685393258%;
        margin-left: auto;
        margin-right: auto; } }
  #search-container INPUT[type="submit"] {
    display: none; }
  #search-container .spinner {
    display: none; }

.overlay-modal {
  top: 0px;
  left: 0px;
  position: fixed;
  z-index: 10001;
  width: 100vw;
  height: 100vh;
  visibility: hidden; }
  .overlay-modal .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-color: rgba(255, 255, 255, 0.75); }
  .overlay-modal .win {
    width: 100%;
    max-width: 700px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    border: 1px solid #CDCDCD; }
    @media (max-width: 767px) {
      .overlay-modal .win {
        /*
            height: 70vh;
            .win-content-int{
                height: calc( 70vh - 120px );
            }
            */ } }
    .overlay-modal .win .win-content {
      position: relative; }
      .overlay-modal .win .win-content A.close {
        position: absolute;
        top: 20px;
        right: 20px; }
        .overlay-modal .win .win-content A.close SVG {
          display: block;
          width: 15px;
          height: auto; }
  .overlay-modal.close {
    visibility: hidden;
    display: none;
    opacity: 0; }

.mailchimp-newsletter-form .newsletter-container {
  position: relative; }

.mailchimp-newsletter-form input[type="email"] {
  padding: 0;
  font-size: 14px;
  line-height: 36px;
  height: 36px;
  border-bottom: 1px solid #CDCDCD;
  background-position: right center;
  background-size: 21px 16px;
  padding-right: 25px; }
  .mailchimp-newsletter-form input[type="email"]:-webkit-autofill, .mailchimp-newsletter-form input[type="email"]:-webkit-autofill:hover, .mailchimp-newsletter-form input[type="email"]:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #F2F2F2 inset !important; }

.mailchimp-newsletter-form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  padding: 0;
  font-size: 14px;
  line-height: 36px;
  height: 36px;
  color: #999; }
  .mailchimp-newsletter-form input[type="submit"]:hover {
    background-color: transparent;
    color: #000; }

.mailchimp-newsletter-form .response {
  position: absolute;
  width: 100%;
  max-width: 380px;
  height: 120px;
  bottom: 20px;
  background-color: white;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  visibility: hidden; }
  .mailchimp-newsletter-form .response.active {
    visibility: visible; }

.mailchimp-newsletter-form .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  cursor: pointer;
  background-image: url(../img/close-newsletter-response.png);
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent)), url(../img/close-newsletter-response.svg);
  background-image: linear-gradient(transparent, transparent), url(../img/close-newsletter-response.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 16px 16px;
  background-position: center center;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out; }
  .mailchimp-newsletter-form .close .ie9 {
    background-image: url(../img/close-newsletter-response.png); }
  .mailchimp-newsletter-form .close:hover {
    opacity: 1; }

.mailchimp-newsletter-form .message {
  padding: 40px 20px 20px;
  font-size: 14px;
  line-height: 21px;
  text-align: left; }
  .mailchimp-newsletter-form .message p {
    margin: 0; }

.module-theme .show-for-mobile-and-landscape .img-wrapper, .module-theme .show-for-mobile-and-landscape .image_wrapper.autosize, .overlay-window-interim .show-for-mobile-and-landscape .img-wrapper, .overlay-window-interim .show-for-mobile-and-landscape .image_wrapper.autosize {
  padding-bottom: 0px;
  height: 50vh;
  position: relative; }
  @media (orientation: landscape) and (max-width: 1023px) {
    .module-theme .show-for-mobile-and-landscape .img-wrapper, .module-theme .show-for-mobile-and-landscape .image_wrapper.autosize, .overlay-window-interim .show-for-mobile-and-landscape .img-wrapper, .overlay-window-interim .show-for-mobile-and-landscape .image_wrapper.autosize {
      height: 80vh; } }
  .module-theme .show-for-mobile-and-landscape .img-wrapper .overlay, .module-theme .show-for-mobile-and-landscape .image_wrapper.autosize .overlay, .overlay-window-interim .show-for-mobile-and-landscape .img-wrapper .overlay, .overlay-window-interim .show-for-mobile-and-landscape .image_wrapper.autosize .overlay {
    background-color: rgba(0, 0, 0, 0.15);
    opacity: 1; }
    .module-theme .show-for-mobile-and-landscape .img-wrapper .overlay .text-overlay, .module-theme .show-for-mobile-and-landscape .image_wrapper.autosize .overlay .text-overlay, .overlay-window-interim .show-for-mobile-and-landscape .img-wrapper .overlay .text-overlay, .overlay-window-interim .show-for-mobile-and-landscape .image_wrapper.autosize .overlay .text-overlay {
      bottom: 0px;
      top: auto;
      width: 100%;
      height: auto;
      padding: 0px 20px 30px 20px;
      text-align: center; }
      .module-theme .show-for-mobile-and-landscape .img-wrapper .overlay .text-overlay h1, .module-theme .show-for-mobile-and-landscape .image_wrapper.autosize .overlay .text-overlay h1, .module-theme .show-for-mobile-and-landscape .img-wrapper .overlay .text-overlay a, .module-theme .show-for-mobile-and-landscape .image_wrapper.autosize .overlay .text-overlay a, .overlay-window-interim .show-for-mobile-and-landscape .img-wrapper .overlay .text-overlay h1, .overlay-window-interim .show-for-mobile-and-landscape .image_wrapper.autosize .overlay .text-overlay h1, .overlay-window-interim .show-for-mobile-and-landscape .img-wrapper .overlay .text-overlay a, .overlay-window-interim .show-for-mobile-and-landscape .image_wrapper.autosize .overlay .text-overlay a {
        top: auto;
        position: relative; }
      .module-theme .show-for-mobile-and-landscape .img-wrapper .overlay .text-overlay h4, .module-theme .show-for-mobile-and-landscape .image_wrapper.autosize .overlay .text-overlay h4, .overlay-window-interim .show-for-mobile-and-landscape .img-wrapper .overlay .text-overlay h4, .overlay-window-interim .show-for-mobile-and-landscape .image_wrapper.autosize .overlay .text-overlay h4 {
        visibility: visible; }
    .module-theme .show-for-mobile-and-landscape .img-wrapper .overlay .read-more, .module-theme .show-for-mobile-and-landscape .image_wrapper.autosize .overlay .read-more, .overlay-window-interim .show-for-mobile-and-landscape .img-wrapper .overlay .read-more, .overlay-window-interim .show-for-mobile-and-landscape .image_wrapper.autosize .overlay .read-more {
      visibility: hidden;
      display: none; }

.module-theme .flickity-carousel, .overlay-window-interim .flickity-carousel {
  position: relative;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out; }
  .module-theme .flickity-carousel .carousel-main, .overlay-window-interim .flickity-carousel .carousel-main {
    position: relative;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-out;
    transition: opacity 0.4s ease-out; }
    .module-theme .flickity-carousel .carousel-main.flickity-enabled, .overlay-window-interim .flickity-carousel .carousel-main.flickity-enabled {
      opacity: 1; }
  .module-theme .flickity-carousel .carousel-cell, .overlay-window-interim .flickity-carousel .carousel-cell {
    margin: 0px 20px; }
    .module-theme .flickity-carousel .carousel-cell .img-wrapper, .module-theme .flickity-carousel .carousel-cell .image_wrapper.autosize, .overlay-window-interim .flickity-carousel .carousel-cell .img-wrapper, .overlay-window-interim .flickity-carousel .carousel-cell .image_wrapper.autosize {
      height: 50vh;
      width: calc(50vh * 1.4981273408);
      padding-bottom: 0px; }
  @media (orientation: landscape) and (max-width: 1023px) {
    .module-theme .flickity-carousel, .overlay-window-interim .flickity-carousel {
      height: 100vh; }
      .module-theme .flickity-carousel .carousel-cell, .overlay-window-interim .flickity-carousel .carousel-cell {
        width: 100vw;
        height: 100vh;
        text-align: center; }
        .module-theme .flickity-carousel .carousel-cell .img-wrapper, .module-theme .flickity-carousel .carousel-cell .image_wrapper.autosize, .overlay-window-interim .flickity-carousel .carousel-cell .img-wrapper, .overlay-window-interim .flickity-carousel .carousel-cell .image_wrapper.autosize {
          width: 100vw;
          height: 100vh; }
        .module-theme .flickity-carousel .carousel-cell img, .overlay-window-interim .flickity-carousel .carousel-cell img {
          -o-object-fit: contain;
             object-fit: contain;
          font-family: "object-fit: contain";
          -o-object-position: center center;
             object-position: center center;
          height: 100vh; } }
  @media (min-width: 768px) and (orientation: portrait) {
    .module-theme .flickity-carousel .carousel-cell .img-wrapper, .module-theme .flickity-carousel .carousel-cell .image_wrapper.autosize, .overlay-window-interim .flickity-carousel .carousel-cell .img-wrapper, .overlay-window-interim .flickity-carousel .carousel-cell .image_wrapper.autosize {
      height: 35vh;
      width: calc(35vh * 1.4981273408); } }
  @media (min-width: 1025px) {
    .module-theme .flickity-carousel .carousel-cell .img-wrapper, .module-theme .flickity-carousel .carousel-cell .image_wrapper.autosize, .overlay-window-interim .flickity-carousel .carousel-cell .img-wrapper, .overlay-window-interim .flickity-carousel .carousel-cell .image_wrapper.autosize {
      height: 55vh;
      width: calc(55vh * 1.4981273408); } }
  @media (min-width: 1400px) {
    .module-theme .flickity-carousel .carousel-cell .img-wrapper, .module-theme .flickity-carousel .carousel-cell .image_wrapper.autosize, .overlay-window-interim .flickity-carousel .carousel-cell .img-wrapper, .overlay-window-interim .flickity-carousel .carousel-cell .image_wrapper.autosize {
      height: 70vh;
      width: calc(70vh * 1.4981273408); } }
  .module-theme .flickity-carousel .arrow-special, .overlay-window-interim .flickity-carousel .arrow-special {
    width: 160px;
    height: 80%; }

.module-theme .carousel-cell.is-selected .overlay, .overlay-window-interim .carousel-cell.is-selected .overlay {
  opacity: 1; }

.module-theme .carousel-cell.state-slide-text .overlay .text-overlay, .overlay-window-interim .carousel-cell.state-slide-text .overlay .text-overlay {
  pointer-events: none; }
  .module-theme .carousel-cell.state-slide-text .overlay .text-overlay h1, .overlay-window-interim .carousel-cell.state-slide-text .overlay .text-overlay h1 {
    opacity: 0; }

.module-theme .carousel-cell.state-slide-text .overlay .text-overlay-content, .overlay-window-interim .carousel-cell.state-slide-text .overlay .text-overlay-content {
  opacity: 1;
  pointer-events: auto; }

.module-theme .overlay, .overlay-window-interim .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  color: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out; }
  .module-theme .overlay .text-overlay, .overlay-window-interim .overlay .text-overlay {
    -webkit-transition: opacity 0.4s ease-out;
    transition: opacity 0.4s ease-out;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px; }
    .module-theme .overlay .text-overlay h1, .overlay-window-interim .overlay .text-overlay h1 {
      -webkit-transition: opacity 0.4s ease-out;
      transition: opacity 0.4s ease-out;
      top: 20px;
      width: 100%;
      position: absolute;
      text-align: center; }
    .module-theme .overlay .text-overlay a, .overlay-window-interim .overlay .text-overlay a {
      position: absolute;
      bottom: 0px;
      left: 0px; }
    .module-theme .overlay .text-overlay h4, .overlay-window-interim .overlay .text-overlay h4 {
      visibility: hidden; }
    .module-theme .overlay .text-overlay h1, .module-theme .overlay .text-overlay .caption, .overlay-window-interim .overlay .text-overlay h1, .overlay-window-interim .overlay .text-overlay .caption {
      /* offset-x | offset-y | blur-radius | color */
      text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.6); }
  .module-theme .overlay.first-slide .text-overlay, .overlay-window-interim .overlay.first-slide .text-overlay {
    bottom: 0px;
    top: auto;
    width: 100%;
    height: auto;
    padding: 0px 20px 30px 20px;
    text-align: center; }
    .module-theme .overlay.first-slide .text-overlay h1, .module-theme .overlay.first-slide .text-overlay a, .overlay-window-interim .overlay.first-slide .text-overlay h1, .overlay-window-interim .overlay.first-slide .text-overlay a {
      top: auto;
      position: relative; }
    .module-theme .overlay.first-slide .text-overlay h4, .overlay-window-interim .overlay.first-slide .text-overlay h4 {
      visibility: visible; }
  .module-theme .overlay .text-overlay-content, .overlay-window-interim .overlay .text-overlay-content {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.4s ease-out;
    transition: opacity 0.4s ease-out;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.6); }
    .module-theme .overlay .text-overlay-content h1, .overlay-window-interim .overlay .text-overlay-content h1 {
      top: 20px;
      width: 100%;
      position: absolute;
      text-align: center; }
    .module-theme .overlay .text-overlay-content a, .overlay-window-interim .overlay .text-overlay-content a {
      position: absolute;
      bottom: 0px;
      left: 0px; }
    .module-theme .overlay .text-overlay-content h4, .overlay-window-interim .overlay .text-overlay-content h4 {
      visibility: hidden; }
    .module-theme .overlay .text-overlay-content .table, .overlay-window-interim .overlay .text-overlay-content .table {
      display: table;
      table-display: fixed;
      width: 100%;
      height: 100%; }
      .module-theme .overlay .text-overlay-content .table .col, .overlay-window-interim .overlay .text-overlay-content .table .col {
        display: table-cell;
        vertical-align: middle; }
    .module-theme .overlay .text-overlay-content .caption, .overlay-window-interim .overlay .text-overlay-content .caption {
      display: none; }
  .module-theme .overlay.first-slide .text-overlay .caption, .overlay-window-interim .overlay.first-slide .text-overlay .caption {
    visibility: hidden; }
  .module-theme .overlay.first-slide .text-overlay-content a, .overlay-window-interim .overlay.first-slide .text-overlay-content a {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: auto;
    bottom: 30px; }
  .module-theme .overlay .caption, .overlay-window-interim .overlay .caption {
    position: absolute;
    text-align: right;
    bottom: 20px;
    right: 20px;
    font-size: 16px; }
  .module-theme .overlay .read-more, .overlay-window-interim .overlay .read-more {
    visibility: hidden;
    pointer-events: none; }

.flickity-carousel a.read-more-fixed {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: auto;
  bottom: 30px;
  margin-top: 0px; }

.flickity-carousel h1.title-fixed {
  top: 20px;
  width: 100%;
  position: absolute;
  text-align: center;
  color: #fff;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.6);
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
  opacity: 1; }

.flickity-carousel #overlay-first-slide {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 80px;
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
  opacity: 0; }
  .flickity-carousel #overlay-first-slide h1, .flickity-carousel #overlay-first-slide h4 {
    color: #fff;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.6); }

.flickity-carousel .text-info {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  color: #fff;
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
  opacity: 0;
  pointer-events: none; }
  .flickity-carousel .text-info .table {
    display: table;
    table-display: fixed;
    width: 100%;
    height: 100%; }
    .flickity-carousel .text-info .table .col {
      display: table-cell;
      vertical-align: middle; }

.flickity-carousel .overlay .read-more {
  visibility: hidden;
  pointer-events: none; }

.flickity-carousel .overlay .text-overlay h1, .flickity-carousel .overlay .text-overlay h4 {
  visibility: hidden !important;
  pointer-events: none !important; }

.flickity-carousel.is-first-slide h1.title-fixed {
  opacity: 0; }

.flickity-carousel.is-first-slide #overlay-first-slide {
  opacity: 1; }

.flickity-carousel.is-first-slide.is-overlay-text #overlay-first-slide {
  opacity: 0; }

.flickity-carousel.is-overlay-text .text-info {
  opacity: 1; }

.overlay-window-interim .flickity-carousel .read-more-fixed {
  bottom: 50px; }

.overlay-window-interim .flickity-carousel #overlay-first-slide {
  bottom: auto;
  top: 50px; }

.arrow-special .base {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out 1.2s;
  transition: opacity 0.6s ease-out 1.2s; }

.module_slideshow.slideshow-ctrl-init,
.flickity-carousel.is-ready {
  opacity: 1; }
  .module_slideshow.slideshow-ctrl-init .arrow-special:hover .base,
  .flickity-carousel.is-ready .arrow-special:hover .base {
    -webkit-transition: opacity 0.3s ease-out 0s;
    transition: opacity 0.3s ease-out 0s;
    opacity: 1; }
  .module_slideshow.slideshow-ctrl-init .arrow-special.right .base,
  .flickity-carousel.is-ready .arrow-special.right .base {
    opacity: 1; }

.overlay-window-interim .flickity-carousel {
  height: 100%;
  overflow: visible; }
  .overlay-window-interim .flickity-carousel .carousel-main .flickity-viewport {
    overflow: visible; }
  .overlay-window-interim .flickity-carousel .carousel-main .carousel-cell {
    margin: 0px 20px; }
    .overlay-window-interim .flickity-carousel .carousel-main .carousel-cell .img-wrapper, .overlay-window-interim .flickity-carousel .carousel-main .carousel-cell .image_wrapper.autosize {
      height: 100vh;
      width: 100%;
      padding-bottom: 0px; }
    .overlay-window-interim .flickity-carousel .carousel-main .carousel-cell img {
      height: 50vh;
      width: auto; }
    .overlay-window-interim .flickity-carousel .carousel-main .carousel-cell .caption {
      display: none; }
  @media (orientation: portrait) {
    .overlay-window-interim .flickity-carousel .carousel-main .carousel-cell img {
      -webkit-transform: translateY(50%);
              transform: translateY(50%); }
    .overlay-window-interim .flickity-carousel .carousel-main .carousel-cell .overlay {
      display: none !important; }
      .overlay-window-interim .flickity-carousel .carousel-main .carousel-cell .overlay.first-slide .text-overlay {
        height: 100%;
        padding: 50px 20px 50px 20px; }
        .overlay-window-interim .flickity-carousel .carousel-main .carousel-cell .overlay.first-slide .text-overlay a.read-more {
          position: absolute;
          left: 50%;
          -webkit-transform: translateX(-50%);
                  transform: translateX(-50%);
          top: auto;
          bottom: 50px; }
      .overlay-window-interim .flickity-carousel .carousel-main .carousel-cell .overlay.first-slide .text-overlay-content a.read-more {
        bottom: 50px; } }
  @media (orientation: landscape) and (max-width: 1023px) {
    .overlay-window-interim .flickity-carousel .carousel-main .carousel-cell {
      width: 100vw;
      height: 100vh;
      text-align: center; }
      .overlay-window-interim .flickity-carousel .carousel-main .carousel-cell .img-wrapper, .overlay-window-interim .flickity-carousel .carousel-main .carousel-cell .image_wrapper.autosize {
        width: 100vw;
        height: 100vh; }
      .overlay-window-interim .flickity-carousel .carousel-main .carousel-cell img {
        -o-object-fit: contain;
           object-fit: contain;
        font-family: "object-fit: contain";
        -o-object-position: center center;
           object-position: center center;
        height: 100vh;
        width: 100vw; } }
  .overlay-window-interim .flickity-carousel .carousel-main .carousel-cell .text-overlay-content .wrap, .overlay-window-interim .flickity-carousel .carousel-main .carousel-cell .text-overlay-content .wrap-all, .overlay-window-interim .flickity-carousel .carousel-main .carousel-cell .text-overlay-content #logo-home, .overlay-window-interim .flickity-carousel .carousel-main .carousel-cell .text-overlay-content #main-header #menu-wrap, #main-header .overlay-window-interim .flickity-carousel .carousel-main .carousel-cell .text-overlay-content #menu-wrap {
    margin-left: 40px;
    margin-right: 40px; }
  .overlay-window-interim .flickity-carousel .carousel-main .carousel-cell .text-overlay-content .wrap-text-large {
    max-width: 80vw; }
  .overlay-window-interim .flickity-carousel .arrow-special {
    display: block !important;
    width: 40px;
    height: 40px; }
    .overlay-window-interim .flickity-carousel .arrow-special .base {
      width: 40px;
      height: 40px; }
  .overlay-window-interim .flickity-carousel .text-info {
    background-color: rgba(0, 0, 0, 0.6); }
    .overlay-window-interim .flickity-carousel .text-info .wrap-text-large {
      max-width: 75vw; }
  .overlay-window-interim .flickity-carousel .caption-fixed {
    color: #fff;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.6);
    position: absolute;
    width: 100%;
    padding: 0px 20px;
    text-align: right;
    bottom: 15px;
    -webkit-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out; }
  .overlay-window-interim .flickity-carousel.is-overlay-text .text-info {
    pointer-events: auto; }
  .overlay-window-interim .flickity-carousel.is-overlay-text .caption-fixed {
    opacity: 0.3; }

.module-project {
  margin-bottom: 0px; }
  @media (min-width: 568px) {
    .module-project .flex-container {
      display: -webkit-box;
      display: flex;
      -webkit-box-pack: center;
              justify-content: center;
      -webkit-box-align: center;
              align-items: center; } }
  .module-project .flex-container .item-project {
    position: relative; }
    @media (min-width: 568px) {
      .module-project .flex-container .item-project {
        margin-left: 1.7857142857%;
        margin-right: 1.7857142857%;
        width: 49.9285714286%; }
        .module-project .flex-container .item-project.vertical {
          width: 46.4285714286%; } }
    @media (min-width: 1025px) {
      .module-project .flex-container .item-project {
        margin-left: 4.2857142857%;
        margin-right: 4.2857142857%;
        width: 37.4285714286%; }
        .module-project .flex-container .item-project.vertical {
          width: 29.5%; } }
    .module-project .flex-container .item-project .overlay {
      opacity: 0;
      -webkit-transition: opacity 1s ease-out 0.2s;
      transition: opacity 1s ease-out 0.2s;
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0px;
      top: 0px;
      background-image: url(../img/gradient.png);
      background-repeat: no-repeat;
      background-size: contain;
      background-position: left bottom;
      background-repeat: repeat-x; }
    .module-project .flex-container .item-project .title {
      opacity: 0;
      -webkit-transition: opacity 1s ease-out 0.2s;
      transition: opacity 1s ease-out 0.2s;
      width: 100%;
      position: absolute;
      bottom: 0px;
      padding: 10px;
      font-size: 18px;
      color: #fff; }
      @media (min-width: 1025px) {
        .module-project .flex-container .item-project .title {
          padding: 15px;
          font-size: 24px; } }
    .module-project .flex-container .item-project.loaded .overlay, .module-project .flex-container .item-project.loaded .title {
      opacity: 1; }

.plus {
  width: 22px;
  height: 22px;
  border-radius: 11px;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 10px;
  right: 10px; }
  .plus svg {
    width: 8px;
    height: 8px; }
  @media (min-width: 768px) {
    .plus {
      width: 30px;
      height: 30px;
      border-radius: 15px; }
      .plus svg {
        width: 10px;
        height: 10px; } }
  .plus svg {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0); }

.module-quotes .quotes-container {
  border-top: 1px solid rgba(64, 64, 64, 0.45);
  border-bottom: 1px solid rgba(64, 64, 64, 0.45);
  padding: 50px 0px 80px 0px; }
  .module-quotes .quotes-container header {
    text-align: center;
    margin-bottom: 50px; }
  .module-quotes .quotes-container .slick-dots li button {
    background-color: rgba(64, 64, 64, 0.45); }
    .module-quotes .quotes-container .slick-dots li button:hover {
      background-color: rgba(64, 64, 64, 0.8); }
  .module-quotes .quotes-container .slick-dots li.slick-active button {
    background-color: rgba(64, 64, 64, 0.8); }

BODY {
  position: static !important;
  background-color: #F5F2ED; }

#barba-wrapper {
  position: relative;
  margin-top: 60px; }
  @media (min-width: 1025px) {
    #barba-wrapper {
      margin-top: 120px; } }

MAIN {
  min-height: calc(80vh);
  /*
        padding-top: $LAYOUT_MARGIN_MD;
        padding-bottom: $LAYOUT_MARGIN_MD;

        @include breakpoint('tablet') {
            padding-top: $LAYOUT_MARGIN_LG;
            padding-bottom: $LAYOUT_MARGIN_LG;
        }

        @include breakpoint('desktop') {
            padding-top: $LAYOUT_MARGIN_XL;
            padding-bottom: $LAYOUT_MARGIN_XL;
        }
        */ }
  MAIN.nomargin {
    padding-top: 0 !important; }

HTML.prevent-scroll,
HTML.prevent-scroll BODY {
  overflow-y: hidden; }

BODY.page-template-page-prototype .size-img {
  line-height: 0; }

BODY.page-template-page-prototype MAIN section {
  padding: 120px 0px; }
  BODY.page-template-page-prototype MAIN section:first-child {
    margin-top: 120px; }
  BODY.page-template-page-prototype MAIN section .inner .size-img {
    margin-bottom: 120px; }
    BODY.page-template-page-prototype MAIN section .inner .size-img:last-child {
      margin-bottom: 0px; }
  BODY.page-template-page-prototype MAIN section .size-img {
    margin: 0 auto; }

main.interim {
  margin-top: 120px; }
  @media (min-width: 1025px) {
    main.interim {
      margin-top: 160px; } }
  @media (min-width: 1400px) {
    main.interim {
      margin-top: 220px; } }
  main.interim .text-intro > p:first-child {
    margin: 0;
    margin-bottom: -20px; }

#bk {
  position: fixed;
  top: 0px;
  width: 100vw;
  height: 100vh; }
  #bk .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px; }
/*# sourceMappingURL=style.css.map */