/*! Flickity v2.3.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;
  -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 */
  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: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer; }

.flickity-page-dots .dot.is-selected {
  opacity: 1; }

/*!
 *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.6.3");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.6.3") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.6.3") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.6.3") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.fa-lg {
  font-size: 1.33333333em;
  line-height: .75em;
  vertical-align: -15%; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-fw {
  width: 1.28571429em;
  text-align: center; }

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none; }

.fa-ul > li {
  position: relative; }

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: .14285714em;
  text-align: center; }

.fa-li.fa-lg {
  left: -1.85714286em; }

.fa-border {
  padding: .2em .25em .15em;
  border: solid .08em #eee;
  border-radius: .1em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right {
  margin-left: .3em; }

.pull-right {
  float: right; }

.pull-left {
  float: left; }

.fa.pull-left {
  margin-right: .3em; }

.fa.pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1); }

:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
  filter: none; }

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle; }

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

.fa-glass:before {
  content: "\f000"; }

.fa-music:before {
  content: "\f001"; }

.fa-search:before {
  content: "\f002"; }

.fa-envelope-o:before {
  content: "\f003"; }

.fa-heart:before {
  content: "\f004"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-o:before {
  content: "\f006"; }

.fa-user:before {
  content: "\f007"; }

.fa-film:before {
  content: "\f008"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-check:before {
  content: "\f00c"; }

.fa-remove:before, .fa-close:before, .fa-times:before {
  content: "\f00d"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-signal:before {
  content: "\f012"; }

.fa-gear:before, .fa-cog:before {
  content: "\f013"; }

.fa-trash-o:before {
  content: "\f014"; }

.fa-home:before {
  content: "\f015"; }

.fa-file-o:before {
  content: "\f016"; }

.fa-clock-o:before {
  content: "\f017"; }

.fa-road:before {
  content: "\f018"; }

.fa-download:before {
  content: "\f019"; }

.fa-arrow-circle-o-down:before {
  content: "\f01a"; }

.fa-arrow-circle-o-up:before {
  content: "\f01b"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-play-circle-o:before {
  content: "\f01d"; }

.fa-rotate-right:before, .fa-repeat:before {
  content: "\f01e"; }

.fa-refresh:before {
  content: "\f021"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-lock:before {
  content: "\f023"; }

.fa-flag:before {
  content: "\f024"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-print:before {
  content: "\f02f"; }

.fa-camera:before {
  content: "\f030"; }

.fa-font:before {
  content: "\f031"; }

.fa-bold:before {
  content: "\f032"; }

.fa-italic:before {
  content: "\f033"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-list:before {
  content: "\f03a"; }

.fa-dedent:before, .fa-outdent:before {
  content: "\f03b"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-video-camera:before {
  content: "\f03d"; }

.fa-photo:before, .fa-image:before, .fa-picture-o:before {
  content: "\f03e"; }

.fa-pencil:before {
  content: "\f040"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-tint:before {
  content: "\f043"; }

.fa-edit:before, .fa-pencil-square-o:before {
  content: "\f044"; }

.fa-share-square-o:before {
  content: "\f045"; }

.fa-check-square-o:before {
  content: "\f046"; }

.fa-arrows:before {
  content: "\f047"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-play:before {
  content: "\f04b"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-eject:before {
  content: "\f052"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-times-circle-o:before {
  content: "\f05c"; }

.fa-check-circle-o:before {
  content: "\f05d"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-mail-forward:before, .fa-share:before {
  content: "\f064"; }

.fa-expand:before {
  content: "\f065"; }

.fa-compress:before {
  content: "\f066"; }

.fa-plus:before {
  content: "\f067"; }

.fa-minus:before {
  content: "\f068"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-warning:before, .fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-plane:before {
  content: "\f072"; }

.fa-calendar:before {
  content: "\f073"; }

.fa-random:before {
  content: "\f074"; }

.fa-comment:before {
  content: "\f075"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-arrows-v:before {
  content: "\f07d"; }

.fa-arrows-h:before {
  content: "\f07e"; }

.fa-bar-chart-o:before, .fa-bar-chart:before {
  content: "\f080"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-key:before {
  content: "\f084"; }

.fa-gears:before, .fa-cogs:before {
  content: "\f085"; }

.fa-comments:before {
  content: "\f086"; }

.fa-thumbs-o-up:before {
  content: "\f087"; }

.fa-thumbs-o-down:before {
  content: "\f088"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-heart-o:before {
  content: "\f08a"; }

.fa-sign-out:before {
  content: "\f08b"; }

.fa-linkedin-square:before {
  content: "\f08c"; }

.fa-thumb-tack:before {
  content: "\f08d"; }

.fa-external-link:before {
  content: "\f08e"; }

.fa-sign-in:before {
  content: "\f090"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-upload:before {
  content: "\f093"; }

.fa-lemon-o:before {
  content: "\f094"; }

.fa-phone:before {
  content: "\f095"; }

.fa-square-o:before {
  content: "\f096"; }

.fa-bookmark-o:before {
  content: "\f097"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-facebook-f:before, .fa-facebook:before {
  content: "\f09a"; }

.fa-github:before {
  content: "\f09b"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-feed:before, .fa-rss:before {
  content: "\f09e"; }

.fa-hdd-o:before {
  content: "\f0a0"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-hand-o-right:before {
  content: "\f0a4"; }

.fa-hand-o-left:before {
  content: "\f0a5"; }

.fa-hand-o-up:before {
  content: "\f0a6"; }

.fa-hand-o-down:before {
  content: "\f0a7"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-group:before, .fa-users:before {
  content: "\f0c0"; }

.fa-chain:before, .fa-link:before {
  content: "\f0c1"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-cut:before, .fa-scissors:before {
  content: "\f0c4"; }

.fa-copy:before, .fa-files-o:before {
  content: "\f0c5"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-save:before, .fa-floppy-o:before {
  content: "\f0c7"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
  content: "\f0c9"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-plus:before {
  content: "\f0d5"; }

.fa-money:before {
  content: "\f0d6"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-unsorted:before, .fa-sort:before {
  content: "\f0dc"; }

.fa-sort-down:before, .fa-sort-desc:before {
  content: "\f0dd"; }

.fa-sort-up:before, .fa-sort-asc:before {
  content: "\f0de"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-linkedin:before {
  content: "\f0e1"; }

.fa-rotate-left:before, .fa-undo:before {
  content: "\f0e2"; }

.fa-legal:before, .fa-gavel:before {
  content: "\f0e3"; }

.fa-dashboard:before, .fa-tachometer:before {
  content: "\f0e4"; }

.fa-comment-o:before {
  content: "\f0e5"; }

.fa-comments-o:before {
  content: "\f0e6"; }

.fa-flash:before, .fa-bolt:before {
  content: "\f0e7"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-paste:before, .fa-clipboard:before {
  content: "\f0ea"; }

.fa-lightbulb-o:before {
  content: "\f0eb"; }

.fa-exchange:before {
  content: "\f0ec"; }

.fa-cloud-download:before {
  content: "\f0ed"; }

.fa-cloud-upload:before {
  content: "\f0ee"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-bell-o:before {
  content: "\f0a2"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cutlery:before {
  content: "\f0f5"; }

.fa-file-text-o:before {
  content: "\f0f6"; }

.fa-building-o:before {
  content: "\f0f7"; }

.fa-hospital-o:before {
  content: "\f0f8"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-mobile-phone:before, .fa-mobile:before {
  content: "\f10b"; }

.fa-circle-o:before {
  content: "\f10c"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-circle:before {
  content: "\f111"; }

.fa-mail-reply:before, .fa-reply:before {
  content: "\f112"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-folder-o:before {
  content: "\f114"; }

.fa-folder-open-o:before {
  content: "\f115"; }

.fa-smile-o:before {
  content: "\f118"; }

.fa-frown-o:before {
  content: "\f119"; }

.fa-meh-o:before {
  content: "\f11a"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-keyboard-o:before {
  content: "\f11c"; }

.fa-flag-o:before {
  content: "\f11d"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-code:before {
  content: "\f121"; }

.fa-mail-reply-all:before, .fa-reply-all:before {
  content: "\f122"; }

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
  content: "\f123"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-crop:before {
  content: "\f125"; }

.fa-code-fork:before {
  content: "\f126"; }

.fa-unlink:before, .fa-chain-broken:before {
  content: "\f127"; }

.fa-question:before {
  content: "\f128"; }

.fa-info:before {
  content: "\f129"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-shield:before {
  content: "\f132"; }

.fa-calendar-o:before {
  content: "\f133"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-ticket:before {
  content: "\f145"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-minus-square-o:before {
  content: "\f147"; }

.fa-level-up:before {
  content: "\f148"; }

.fa-level-down:before {
  content: "\f149"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-pencil-square:before {
  content: "\f14b"; }

.fa-external-link-square:before {
  content: "\f14c"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-toggle-down:before, .fa-caret-square-o-down:before {
  content: "\f150"; }

.fa-toggle-up:before, .fa-caret-square-o-up:before {
  content: "\f151"; }

.fa-toggle-right:before, .fa-caret-square-o-right:before {
  content: "\f152"; }

.fa-euro:before, .fa-eur:before {
  content: "\f153"; }

.fa-gbp:before {
  content: "\f154"; }

.fa-dollar:before, .fa-usd:before {
  content: "\f155"; }

.fa-rupee:before, .fa-inr:before {
  content: "\f156"; }

.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
  content: "\f157"; }

.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
  content: "\f158"; }

.fa-won:before, .fa-krw:before {
  content: "\f159"; }

.fa-bitcoin:before, .fa-btc:before {
  content: "\f15a"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-text:before {
  content: "\f15c"; }

.fa-sort-alpha-asc:before {
  content: "\f15d"; }

.fa-sort-alpha-desc:before {
  content: "\f15e"; }

.fa-sort-amount-asc:before {
  content: "\f160"; }

.fa-sort-amount-desc:before {
  content: "\f161"; }

.fa-sort-numeric-asc:before {
  content: "\f162"; }

.fa-sort-numeric-desc:before {
  content: "\f163"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-youtube-square:before {
  content: "\f166"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-youtube-play:before {
  content: "\f16a"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-adn:before {
  content: "\f170"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitbucket-square:before {
  content: "\f172"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-long-arrow-down:before {
  content: "\f175"; }

.fa-long-arrow-up:before {
  content: "\f176"; }

.fa-long-arrow-left:before {
  content: "\f177"; }

.fa-long-arrow-right:before {
  content: "\f178"; }

.fa-apple:before {
  content: "\f179"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-android:before {
  content: "\f17b"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-trello:before {
  content: "\f181"; }

.fa-female:before {
  content: "\f182"; }

.fa-male:before {
  content: "\f183"; }

.fa-gittip:before, .fa-gratipay:before {
  content: "\f184"; }

.fa-sun-o:before {
  content: "\f185"; }

.fa-moon-o:before {
  content: "\f186"; }

.fa-archive:before {
  content: "\f187"; }

.fa-bug:before {
  content: "\f188"; }

.fa-vk:before {
  content: "\f189"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-arrow-circle-o-right:before {
  content: "\f18e"; }

.fa-arrow-circle-o-left:before {
  content: "\f190"; }

.fa-toggle-left:before, .fa-caret-square-o-left:before {
  content: "\f191"; }

.fa-dot-circle-o:before {
  content: "\f192"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-turkish-lira:before, .fa-try:before {
  content: "\f195"; }

.fa-plus-square-o:before {
  content: "\f196"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-slack:before {
  content: "\f198"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-institution:before, .fa-bank:before, .fa-university:before {
  content: "\f19c"; }

.fa-mortar-board:before, .fa-graduation-cap:before {
  content: "\f19d"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-spoon:before {
  content: "\f1b1"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-automobile:before, .fa-car:before {
  content: "\f1b9"; }

.fa-cab:before, .fa-taxi:before {
  content: "\f1ba"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-file-pdf-o:before {
  content: "\f1c1"; }

.fa-file-word-o:before {
  content: "\f1c2"; }

.fa-file-excel-o:before {
  content: "\f1c3"; }

.fa-file-powerpoint-o:before {
  content: "\f1c4"; }

.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
  content: "\f1c5"; }

.fa-file-zip-o:before, .fa-file-archive-o:before {
  content: "\f1c6"; }

.fa-file-sound-o:before, .fa-file-audio-o:before {
  content: "\f1c7"; }

.fa-file-movie-o:before, .fa-file-video-o:before {
  content: "\f1c8"; }

.fa-file-code-o:before {
  content: "\f1c9"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
  content: "\f1cd"; }

.fa-circle-o-notch:before {
  content: "\f1ce"; }

.fa-ra:before, .fa-resistance:before, .fa-rebel:before {
  content: "\f1d0"; }

.fa-ge:before, .fa-empire:before {
  content: "\f1d1"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before {
  content: "\f1d4"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-wechat:before, .fa-weixin:before {
  content: "\f1d7"; }

.fa-send:before, .fa-paper-plane:before {
  content: "\f1d8"; }

.fa-send-o:before, .fa-paper-plane-o:before {
  content: "\f1d9"; }

.fa-history:before {
  content: "\f1da"; }

.fa-circle-thin:before {
  content: "\f1db"; }

.fa-header:before {
  content: "\f1dc"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-sliders:before {
  content: "\f1de"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-soccer-ball-o:before, .fa-futbol-o:before {
  content: "\f1e3"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-newspaper-o:before {
  content: "\f1ea"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bell-slash-o:before {
  content: "\f1f7"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-eyedropper:before {
  content: "\f1fb"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-area-chart:before {
  content: "\f1fe"; }

.fa-pie-chart:before {
  content: "\f200"; }

.fa-line-chart:before {
  content: "\f201"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-bus:before {
  content: "\f207"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-cc:before {
  content: "\f20a"; }

.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
  content: "\f20b"; }

.fa-meanpath:before {
  content: "\f20c"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-diamond:before {
  content: "\f219"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-venus:before {
  content: "\f221"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-intersex:before, .fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-facebook-official:before {
  content: "\f230"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-server:before {
  content: "\f233"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-hotel:before, .fa-bed:before {
  content: "\f236"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-train:before {
  content: "\f238"; }

.fa-subway:before {
  content: "\f239"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-yc:before, .fa-y-combinator:before {
  content: "\f23b"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-battery-4:before, .fa-battery-full:before {
  content: "\f240"; }

.fa-battery-3:before, .fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-battery-2:before, .fa-battery-half:before {
  content: "\f242"; }

.fa-battery-1:before, .fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-0:before, .fa-battery-empty:before {
  content: "\f244"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-object-group:before {
  content: "\f247"; }

.fa-object-ungroup:before {
  content: "\f248"; }

.fa-sticky-note:before {
  content: "\f249"; }

.fa-sticky-note-o:before {
  content: "\f24a"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-clone:before {
  content: "\f24d"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-hourglass-o:before {
  content: "\f250"; }

.fa-hourglass-1:before, .fa-hourglass-start:before {
  content: "\f251"; }

.fa-hourglass-2:before, .fa-hourglass-half:before {
  content: "\f252"; }

.fa-hourglass-3:before, .fa-hourglass-end:before {
  content: "\f253"; }

.fa-hourglass:before {
  content: "\f254"; }

.fa-hand-grab-o:before, .fa-hand-rock-o:before {
  content: "\f255"; }

.fa-hand-stop-o:before, .fa-hand-paper-o:before {
  content: "\f256"; }

.fa-hand-scissors-o:before {
  content: "\f257"; }

.fa-hand-lizard-o:before {
  content: "\f258"; }

.fa-hand-spock-o:before {
  content: "\f259"; }

.fa-hand-pointer-o:before {
  content: "\f25a"; }

.fa-hand-peace-o:before {
  content: "\f25b"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-gg:before {
  content: "\f260"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-tripadvisor:before {
  content: "\f262"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-safari:before {
  content: "\f267"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-tv:before, .fa-television:before {
  content: "\f26c"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-500px:before {
  content: "\f26e"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-calendar-plus-o:before {
  content: "\f271"; }

.fa-calendar-minus-o:before {
  content: "\f272"; }

.fa-calendar-times-o:before {
  content: "\f273"; }

.fa-calendar-check-o:before {
  content: "\f274"; }

.fa-industry:before {
  content: "\f275"; }

.fa-map-pin:before {
  content: "\f276"; }

.fa-map-signs:before {
  content: "\f277"; }

.fa-map-o:before {
  content: "\f278"; }

.fa-map:before {
  content: "\f279"; }

.fa-commenting:before {
  content: "\f27a"; }

.fa-commenting-o:before {
  content: "\f27b"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-vimeo:before {
  content: "\f27d"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-edge:before {
  content: "\f282"; }

.fa-credit-card-alt:before {
  content: "\f283"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-modx:before {
  content: "\f285"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-usb:before {
  content: "\f287"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-pause-circle:before {
  content: "\f28b"; }

.fa-pause-circle-o:before {
  content: "\f28c"; }

.fa-stop-circle:before {
  content: "\f28d"; }

.fa-stop-circle-o:before {
  content: "\f28e"; }

.fa-shopping-bag:before {
  content: "\f290"; }

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-percent:before {
  content: "\f295"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-envira:before {
  content: "\f299"; }

.fa-universal-access:before {
  content: "\f29a"; }

.fa-wheelchair-alt:before {
  content: "\f29b"; }

.fa-question-circle-o:before {
  content: "\f29c"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-audio-description:before {
  content: "\f29e"; }

.fa-volume-control-phone:before {
  content: "\f2a0"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before {
  content: "\f2a4"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-signing:before, .fa-sign-language:before {
  content: "\f2a7"; }

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-google-plus-circle:before, .fa-google-plus-official:before {
  content: "\f2b3"; }

.fa-fa:before, .fa-font-awesome:before {
  content: "\f2b4"; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

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

/*!
 * Start Bootstrap - Agency v3.3.7+1 (http://startbootstrap.com/template-overviews/agency)
 * Copyright 2013-2016 Start Bootstrap
 * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE)
 */
@font-face {
  font-family: 'WhangaraTitle';
  src: url(./fonts/WhangaraFonts.ttf) format("truetype");
  /* Safari, Android, iOS */ }

@font-face {
  font-family: 'MuseoSans_100';
  src: url(./fonts/MuseoSans_100.otf) format("truetype");
  /* Safari, Android, iOS */ }

@font-face {
  font-family: 'MuseoSans_300';
  src: url(./fonts/MuseoSans_300.otf) format("truetype");
  /* Safari, Android, iOS */ }

@font-face {
  font-family: 'MuseoSans_500';
  src: url(./fonts/MuseoSans_500.otf) format("truetype");
  /* Safari, Android, iOS */ }

@font-face {
  font-family: 'MuseoSans_700';
  src: url(./fonts/MuseoSans_700.otf) format("truetype");
  /* Safari, Android, iOS */ }

@font-face {
  font-family: 'Museo100-Regular';
  src: url(./fonts/Museo100-Regular.otf) format("truetype");
  /* Safari, Android, iOS */ }

@font-face {
  font-family: 'Museo300-Regular';
  src: url(./fonts/Museo300-Regular.otf) format("truetype");
  /* Safari, Android, iOS */ }

@font-face {
  font-family: 'Museo500-Regular';
  src: url(./fonts/Museo500-Regular.otf) format("truetype");
  /* Safari, Android, iOS */ }

@font-face {
  font-family: 'Museo700-Regular';
  src: url(./fonts/Museo700-Regular.otf) format("truetype");
  /* Safari, Android, iOS */ }

body {
  overflow-x: hidden;
  font-family: 'MuseoSans_300'; }

.text-muted {
  color: #777777; }

.text-primary {
  color: #fed136; }

p {
  font-size: 16px;
  line-height: 1.75; }

p.large {
  font-size: 16px; }

a,
a:hover,
a:focus,
a:active,
a.active {
  outline: none; }

a {
  color: #fed136;
  color: #000; }

a:hover,
a:focus,
a:active,
a.active {
  color: #fec503;
  color: #000; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Museo300-Regular';
  font-weight: 700; }

.img-centered {
  margin: 0 auto; }

.bg-light-gray {
  background-color: #eeeeee; }

.bg-darkest-gray {
  background-color: #222222; }

.btn-primary {
  color: white;
  background-color: #fed136;
  border-color: #fed136;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700; }

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  color: white;
  background-color: #fec503;
  border-color: #f6bf01; }

.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  background-image: none; }

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #fed136;
  border-color: #fed136; }

.btn-primary .badge {
  color: #fed136;
  background-color: white; }

.btn-xl {
  color: white;
  background-color: #fed136;
  border-color: #fed136;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 3px;
  font-size: 18px;
  padding: 20px 40px; }

.btn-xl:hover,
.btn-xl:focus,
.btn-xl:active,
.btn-xl.active,
.open .dropdown-toggle.btn-xl {
  color: white;
  background-color: #fec503;
  border-color: #f6bf01; }

.btn-xl:active,
.btn-xl.active,
.open .dropdown-toggle.btn-xl {
  background-image: none; }

.btn-xl.disabled,
.btn-xl[disabled],
fieldset[disabled] .btn-xl,
.btn-xl.disabled:hover,
.btn-xl[disabled]:hover,
fieldset[disabled] .btn-xl:hover,
.btn-xl.disabled:focus,
.btn-xl[disabled]:focus,
fieldset[disabled] .btn-xl:focus,
.btn-xl.disabled:active,
.btn-xl[disabled]:active,
fieldset[disabled] .btn-xl:active,
.btn-xl.disabled.active,
.btn-xl[disabled].active,
fieldset[disabled] .btn-xl.active {
  background-color: #fed136;
  border-color: #fed136; }

.btn-xl .badge {
  color: #fed136;
  background-color: white; }

.additional-copy {
  margin-top: 20px; }

.button-link {
  max-width: 230px;
  margin: auto;
  padding: 20px 20px;
  border: 1px solid #4b4b4b;
  border-radius: 4px;
  margin-top: 20px; }

.button-link a {
  color: #4b4b4b;
  font-family: 'MuseoSans_500';
  font-size: 18px; }

.button-link:hover {
  border: 1px solid #00a1df;
  text-align: center;
  background: -webkit-linear-gradient(to top, #006e9c, rgba(33, 173, 224, 0.82));
  background: linear-gradient(to top, #006e9c, rgba(33, 173, 224, 0.82));
  color: #fff !important; }

.button-link:hover a {
  color: #fff !important; }

.button-link a:hover {
  text-decoration: none; }

.grid-section {
  padding: 0px 0px; }

.grid-section .container {
  width: 100%; }

.whangara-heading {
  font-family: 'WhangaraTitle';
  text-transform: uppercase; }

.whangara-heading img {
  max-width: 100%; }

.fa {
  color: #222222; }

/* Style the tab */
div.tab {
  overflow: hidden;
  background: linear-gradient(#fff 40%, #ececec 110%);
  padding: 0px; }

/* Style the buttons inside the tab */
div.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  width: 25%;
  font-size: 14px;
  font-family: 'MuseoSans_700';
  font-weight: 400;
  color: #4d4d4d; }

.fitImage img {
  width: 100%;
  height: auto; }

/* Change background color of buttons on hover */
div.tab button:hover {
  background-color: #2b2b2b;
  color: #fff; }

/* Create an active/current tablink class */
div.tab button.active {
  background-color: #313131;
  color: #fff; }

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 5% 10%;
  border: 1px solid #313131;
  border-top: none;
  background-color: #313131; }

.tabcontent:first-child {
  display: block !important; }

.tabcontent h1 {
  color: #fff;
  text-align: center;
  letter-spacing: 2px; }

.tabcontent h3 {
  color: #fff;
  text-transform: none;
  font-size: 24px;
  letter-spacing: 1px; }

.tabcontent p {
  padding-bottom: 0px;
  margin-bottom: 0px;
  color: #d2d2d2;
  font-size: 17px;
  padding-left: 50px; }

.tabcontent hr {
  margin: 40px auto; }

.tabcontent .text-container {
  padding-bottom: 15px; }

.tabcontent .text-container input[type="text"],
.tabcontent .text-container input[type="email"],
.tabcontent .text-container textarea {
  background-color: #242424;
  background-color: #6e6e6e;
  border: none;
  max-width: 300px;
  width: 100%;
  padding: 15px;
  color: #fff;
  font-family: 'MuseoSans_500'; }

.tabcontent .text-container input[type="submit"] {
  text-align: center;
  max-width: 180px;
  padding: 0px 20px;
  border-radius: 4px;
  background: #4AC29A;
  background: -webkit-linear-gradient(to left, #4AC29A, #BDFFF3);
  background: linear-gradient(to top, #006e9c, rgba(33, 173, 224, 0.82));
  display: table;
  height: 46px;
  width: 180px;
  border: none;
  color: #fff;
  font-family: 'MuseoSans_300'; }

.contact-us-container {
  max-width: 1150px;
  padding-top: 0px;
  padding-bottom: 0px; }

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari 	color: #5a5a5a; */
  color: #a2a2a2;
  font-family: 'MuseoSans_500';
  font-style: italic;
  font-weight: bold; }

::-moz-placeholder {
  /* Firefox 19+ 	color: #5a5a5a; */
  color: #a2a2a2;
  font-family: 'MuseoSans_500';
  font-style: italic;
  font-weight: bold; }

:-ms-input-placeholder {
  /* IE 10+ 	color: #5a5a5a; */
  color: #a2a2a2;
  font-family: 'MuseoSans_500';
  font-style: italic;
  font-weight: bold; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #a2a2a2;
  font-family: 'MuseoSans_500';
  font-style: italic;
  font-weight: bold; }

.box-shadow-border {
  -webkit-box-shadow: 6px 7px 0px 0px rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 6px 7px 0px 0px rgba(0, 0, 0, 0.22);
  box-shadow: 6px 7px 0px 0px rgba(0, 0, 0, 0.22);
  padding-left: 0px;
  padding-right: 0px; }

.header-banner {
  margin-top: 101px;
  float: none;
  padding-left: 0px;
  padding-right: 0px; }

.header-banner img {
  width: 100%; }

.login h1 {
  text-align: left; }

.news-section h2 {
  display: inline-block;
  font-size: 25px;
  text-transform: none;
  font-family: 'Museo700-Regular';
  color: #4d4d4d;
  margin: 0px 15px; }

/* Login */
#MemberLoginForm_LoginForm_action_dologin {
  text-align: center;
  max-width: 180px;
  padding: 0px 20px;
  border-radius: 4px;
  background: #4AC29A;
  background: -webkit-linear-gradient(to left, #4AC29A, #BDFFF3);
  background: linear-gradient(to top, #006e9c, rgba(33, 173, 224, 0.82));
  display: table;
  height: 46px;
  width: 180px;
  border: none;
  color: #fff;
  font-family: 'MuseoSans_300';
  margin-bottom: 10px;
  font-size: 18px; }

#MemberLoginForm_LostPasswordForm_action_forgotPassword,
#MemberLoginForm_LoginForm_action_logout {
  text-align: center;
  max-width: 320px;
  padding: 0px 20px;
  border-radius: 4px;
  background: #4AC29A;
  background: -webkit-linear-gradient(to left, #4AC29A, #BDFFF3);
  background: linear-gradient(to top, #006e9c, rgba(33, 173, 224, 0.82));
  display: table;
  height: 46px;
  width: 320px;
  border: none;
  color: #fff;
  font-family: 'MuseoSans_300';
  margin-bottom: 10px;
  font-size: 18px; }

#MemberLoginForm_LoginForm_Email_Holder .left,
#MemberLoginForm_LoginForm_Password_Holder .left,
#MemberLoginForm_LostPasswordForm_Email_Holder .left {
  padding-left: 0px;
  font-family: 'MuseoSans_500';
  font-size: 16px;
  padding-top: 10px;
  width: 100%;
  text-align: left; }

#MemberLoginForm_LoginForm_Remember {
  margin: 0;
  position: relative;
  display: inline-block; }

section .content-heading #ForgotPassword {
  margin: 0; }

#ForgotPassword a {
  color: #333333;
  font-family: 'MuseoSans_500';
  font-size: 16px;
  padding-top: 10px; }

#dropdown {
  display: none; }

.dropdown-nav {
  background: #000;
  padding: 0px 0;
  -webkit-transition: ease-in 0.3s;
  -moz-transition: ease-in 0.3s;
  transition: ease-in 0.3s;
  border: none;
  /* border-bottom: 1px solid #ececec; */
  height: 70px;
  top: 90px;
  position: fixed;
  width: 100%;
  z-index: 9999;
  text-align: center; }

.dropdownExtended {
  background: #e8e7e7;
  padding: 0px 0;
  -webkit-transition: ease-in 0.3s;
  -moz-transition: ease-in 0.3s;
  transition: ease-in 0.3s;
  border: none;
  /* border-bottom: 1px solid #ececec; */
  height: 70px;
  top: 160px;
  position: fixed;
  width: 100%;
  z-index: 9999;
  text-align: center;
  display: none; }

.dropdown-nav a {
  font-family: 'MuseoSans_500';
  font-size: 13px;
  color: #4d4d4d;
  letter-spacing: 1px;
  display: table-cell;
  vertical-align: middle;
  padding: 0px 45px;
  font-weight: 100; }

.dropdown-nav-link {
  display: none;
  position: relative;
  height: 70px;
  margin: auto; }

.dropdown-navExtend-link {
  display: none;
  position: relative;
  height: 70px;
  margin: auto; }

.dropdown-navExtend-link a {
  font-family: 'MuseoSans_500';
  font-size: 13px;
  color: #4d4d4d;
  letter-spacing: 1px;
  display: table-cell;
  vertical-align: middle;
  padding: 0px 45px;
  font-weight: 100; }

.dropdown-nav-shareholder {
  width: 1000px; }

.searchResults {
  padding: 50px; }

.searchResults h4 a {
  font-family: 'Museo300-Regular'; }

.searchResults a {
  font-family: 'MuseoSans_500'; }

#PageNumbers {
  padding: 0px 40px; }

.pagination a {
  padding: 10px; }

.searchResults li {
  padding: 10px 0px; }

.searchResults h4 {
  font-size: 22px; }

.searchResults a {
  color: #575757;
  text-decoration: none;
  font-weight: bold; }

.searchResults a:hover {
  color: #00a1df; }

.filter-buttons {
  text-align: center;
  max-width: 180px;
  padding: 0px 20px;
  border-radius: 4px;
  background: transparent;
  display: table;
  height: 45px;
  width: 180px;
  /*border: 1px solid rgba(118, 118, 118, 0.84);*/
  display: inline-block;
  font-family: 'MuseoSans_500';
  font-size: 15px;
  margin-right: 15px;
  border-width: 2px;
  border-style: outset;
  border-color: buttonface;
  border-image: initial; }

.news-section {
  background-color: #efefef; }

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

.news-main-container {
  padding-top: 50px; }

.item {
  padding: 7px 7px; }

.item img {
  width: 100%; }

.item .news-title {
  font-size: 22px;
  margin: 0px 0px;
  text-transform: none;
  padding-bottom: 5px; }

.item .news-date {
  font-size: 18px;
  margin: 2px 0px;
  text-transform: none; }

.item p {
  font-size: 17px;
  padding-bottom: 0px; }

.element-item .news-container {
  padding: 15px;
  background-color: #fff; }

section .item hr {
  margin: 20px auto; }

.additional-content p {
  max-width: 700px;
  margin: auto; }

.additional-content ul {
  max-width: 700px;
  margin: auto;
  color: #4b4b4b;
  font-family: 'MuseoSans_100';
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 40px; }

.additional-content ul li {
  margin-bottom: 4px; }

.hero-bg {
  background: #222;
  height: 100%;
  max-height: 500px;
  height: 500px;
  width: 100%;
  clear: both;
  margin-top: 101px;
  display: none; }

.thumbnail {
  border-radius: 0px;
  padding: 15px;
  border: 0px solid #fff;
  margin-bottom: 0px; }

.contact-us-banner {
  text-align: center;
  padding-bottom: 40px; }

.contact-us-banner img {
  max-width: 700px;
  width: 100%; }

.large-banner-row-ContentDetails .content-panel-banner {
  padding-left: 0px;
  padding-right: 0px; }

.additional-content h1 {
  text-transform: none;
  font-size: 22px;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 0px; }

.container-ContentPage {
  padding-left: 0px;
  padding-right: 0px; }

.parallax-window {
  min-height: 500px;
  background: transparent;
  display: table;
  width: 100%; }

.parallax-content {
  display: table-cell;
  vertical-align: middle;
  text-align: center; }

.section-content-panel .parallax-window h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 35px;
  letter-spacing: 3px;
  line-height: 40px;
  font-family: 'Museo500-Regular'; }

.section-content-panel .parallax-window h2 {
  color: #fff;
  font-size: 26px;
  font-family: 'Museo100-Regular';
  letter-spacing: 3px;
  line-height: 35px; }

section .parallax-content hr {
  border-top: 1px solid #fff;
  margin: 30px auto; }

section .parallax-window p {
  padding-bottom: 0px;
  margin-bottom: 0px; }

.dropdown-nav a:hover {
  color: #00a1df !important;
  text-decoration: none; }

.checkbox label {
  font-family: 'MuseoSans_500';
  font-size: 16px;
  padding-top: 10px;
  padding-left: 5px; }

.dropdown-nav-link a:hover {
  color: #00a1df !important;
  text-decoration: none; }

.dropdown-navExtend-link a:hover {
  color: #00a1df !important;
  text-decoration: none; }

.checkbox, .radio {
  text-align: left; }

.news-container a:hover .news-title {
  color: #00a1df; }

.button-news-link {
  max-width: 130px;
  margin: auto;
  padding: 6px 10px;
  border: 1px solid #4b4b4b;
  border-radius: 4px;
  margin-top: 20px;
  text-align: center; }

.button-news-link a {
  color: #4b4b4b;
  font-family: 'MuseoSans_300';
  font-size: 15px; }

.button-news-link:hover {
  border: 1px solid #00a1df;
  text-align: center;
  background: -webkit-linear-gradient(to top, #006e9c, rgba(33, 173, 224, 0.82));
  background: linear-gradient(to top, #006e9c, rgba(33, 173, 224, 0.82));
  color: #fff !important; }

.button-news-link:hover a {
  color: #fff !important;
  text-decoration: none; }

.general-docs-content {
  padding-bottom: 40px; }

.general-docs-heading {
  padding-bottom: 60px; }

.general-docs-heading h1 {
  text-align: center; }

.general-docs-heading h1 {
  text-transform: none;
  font-size: 24px;
  margin-top: 0px;
  margin-bottom: 0px; }

.general-docs-holder {
  text-align: left;
  padding: 0px 10px 30px; }

.general-docs-holder a {
  color: #4b4b4b;
  font-family: 'MuseoSans_100';
  font-size: 18.5px;
  line-height: 1.3; }

.general-docs-holder a:hover {
  color: #00a1df;
  text-decoration: none; }

#dropdown-shareholder {
  display: none; }

.documents-container {
  background-color: #fff;
  padding: 20px; }

.documents-container h1 {
  text-align: center;
  font-size: 45px; }

.maori-documents h2 {
  text-transform: none;
  font-size: 24px;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-bottom: 20px; }

.maori-documents-link a {
  color: #4b4b4b;
  font-family: 'MuseoSans_100';
  font-size: 18.5px;
  line-height: 1.3; }

.maori-documents-link a:hover {
  text-decoration: none;
  color: #00a1df; }

.events-content h4 {
  color: #000;
  text-transform: none;
  font-family: 'MuseoSans_300';
  font-size: 14px;
  padding: 3px 0px;
  margin: 0px;
  text-align: left; }

.events-content h3 {
  color: #000;
  text-transform: none;
  font-family: 'MuseoSans_300';
  font-size: 18px;
  padding: 3px 0px;
  margin: 0px;
  text-align: left; }

.events-content {
  padding: 15px; }

.events-content {
  padding: 15px; }

.events-content:nth-child(even) {
  background-color: rgba(156, 156, 156, 0.06); }

section .events-content p {
  margin-bottom: 0px;
  padding-bottom: 0px;
  text-align: left;
  padding-top: 15px;
  font-size: 17px; }

.maori-documents .calendar-year {
  text-align: center;
  font-family: 'MuseoSans_500'; }

.newspage-panel {
  padding-top: 40px !important; }

.fa-bars {
  color: #fff; }

.mobile-nav {
  display: none; }

#announcement {
  display: none; }

#article {
  display: none; }

.carousel-inner > .item > a > img, .carousel-inner > .item > img, .img-responsive, .thumbnail a > img, .thumbnail > img {
  width: 100%; }

.alert-success {
  max-width: 300px;
  font-family: 'MuseoSans_100';
  font-size: 16px; }

.alert-success strong {
  font-family: 'MuseoSans_700'; }

.banner-parallax, .banner-parallax .parallax-window {
  margin-top: 101px; }

.date-title {
  display: inline-block;
  width: 56px;
  font-family: 'MuseoSans_700';
  font-size: 15px; }

.date-content {
  display: inline-block;
  font-family: 'MuseoSans_300';
  font-size: 14px;
  padding-bottom: 7px; }

section .date-content p {
  font-family: 'MuseoSans_300';
  color: #000;
  font-size: 14px;
  padding-top: 0px; }

.dropdown-nav-link .current,
.dropdown-nav-link .section,
.navbar-nav .section,
.dropdownExtended .current {
  color: #00a1df !important;
  background: #f2f2f2 !important; }

.footer-nav a:hover span {
  color: #00a1df; }

#mainNav .navbar-right .section a {
  color: #00a1df !important;
  background-color: #e8e7e7 !important; }

@media (min-width: 768px) {
  /*
       OLD NAVIGATION
      .navbar-custom {
        background: linear-gradient(#fff 80%, #ececec 110%);
        padding: 25px 0;
        -webkit-transition: padding 0.3s;
        -moz-transition: padding 0.3s;
        transition: padding 0.3s;
        border: none;
        border-bottom: 1px solid #ececec;
      }
    */
  /* customized css */
  .navbar-right li {
    padding: 0px 0px;
    -webkit-transition: ease-in 0.2s;
    -moz-transition: ease-in 0.2s;
    transition: ease-in 0.2s; }
  /*
    .affix .navbar-right li {
        padding: 10px 0px;
    }

    */
  .navbar-nav > li > a {
    padding-top: 40px;
    padding-bottom: 40px; }
  #mainNav .navbar-right li:hover a {
    background-color: #e8e7e7;
    color: #00a1df !important;
    -webkit-transition: ease-in 0.5s;
    -moz-transition: ease-in 0.5s;
    transition: ease-in 0.5s; }
  #mainNav .navbar-right #search-input:hover a {
    background-color: transparent; }
  #mainNav .navbar-right #search-input a:hover {
    color: #333; }
  /*
    .navbar-custom .navbar-nav > li:hover a{
        color:#fff;
    }

    .navbar-custom .navbar-nav > li:hover {
        color: #fff;
        background-color: #252525;
    }

    */
  .navbar-default .navbar-nav > li:focus a,
  .navbar-default .navbar-nav > li:hover a {
    color: #fff; }
  /*

    .navbar-custom .navbar-nav > .active:after {
        content: '';
        position: absolute;
        bottom: 0px;
        right: 0px;
        height: 100%;
        width: 50%;
        transform-origin: 50% 100%;
        transform: perspective(10px) rotateX(6deg);
        box-shadow: -7px -17px 0px 17px #a4a4a4, 6px -7px 10px rgba(128, 128, 128, 0);
        z-index: -1;
        -webkit-transition: ease-in 0.3s;
        -moz-transition: ease-in 0.3s;
        transition: ease-in 0.3s;
    }

    .navbar-custom .navbar-nav > .active:before {
        content: '';
        position: absolute;
        bottom: 0px;
        right: 0px;
        height: 100%;
        width: 50%;
        transform-origin: 50% 100%;
        transform: perspective(70px) rotateX(10deg);
        box-shadow: -9px -17px 0px 17px #a4a4a4, 6px -7px 10px rgba(128, 128, 128, 0);
        z-index: -1;
        -webkit-transition: ease-in 0.3s;
        -moz-transition: ease-in 0.3s;
        transition: ease-in 0.3s;
    }

    */
  /*

    .affix .navbar-nav > .active:after {
       content: '';
        position: absolute;
        bottom: 0px;
        right: 0px;
        height: 100%;
        width: 50%;
        transform-origin: 50% 100%;
        transform: perspective(7px) rotateX(7deg);
        box-shadow: -10px -17px 0px 17px #a4a4a4, 6px -7px 10px rgba(128, 128, 128, 0);
        z-index: -1;
        -webkit-transition: ease-in 0.3s;
        -moz-transition: ease-in 0.3s;
        transition: ease-in 0.3s;
    }

     .affix .navbar-nav > .active:before {
        content: '';
        position: absolute;
        bottom: 0px;
        right: 0px;
        height: 100%;
        width: 50%;
        transform-origin: 50% 100%;
        transform: perspective(70px) rotateX(7deg);
        box-shadow: -12px -20px 0px 17px #a4a4a4, 6px -7px 10px rgba(128, 128, 128, 0);
        z-index: -1;
        -webkit-transition: ease-in 0.3s;
        -moz-transition: ease-in 0.3s;
        transition: ease-in 0.3s;
    }

    */
  .navbar-brand > img {
    height: 100%; }
  .navbar-brand {
    padding: 0; }
  .navbar-custom .navbar-brand {
    height: 70px; }
  /*

    .affix .navbar-brand {
        height: 50px;
    }

    */
  .navbar-custom .logo-container {
    padding: 15px 0px 15px 25px;
    -webkit-transition: ease-in 0.3s;
    -moz-transition: ease-in 0.3s;
    transition: ease-in 0.3s; }
  /*

    .affix .logo-container {
        padding: 10px 0px 10px 25px;
    }

    */
  .navbar-right {
    float: left !important;
    margin-right: -15px;
    padding-left: 15px; }
  #SearchForm_SearchForm_action_results {
    background: transparent;
    border: transparent; }
  #SearchForm_SearchForm_Search_Holder {
    display: block;
    position: absolute;
    top: 10px;
    right: 45px;
    width: 0px;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
    color: #333; }
  .show_search {
    width: 730px !important;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out; }
  .show_search #SearchForm_SearchForm_Search {
    display: block;
    border: 1px solid #cacaca;
    background-color: #fff; }
  #SearchForm_SearchForm_Search {
    max-width: 100% !important;
    border: transparent;
    background-color: transparent; }
  /*
    .container {
        width: 1026px;
    }
    */
  /*

    .affix .container {
        width: 964px;
    }

    */
  section hr {
    max-width: 150px;
    border-top: 1px solid #949494;
    margin: 50px auto; }
  section p {
    text-align: left;
    padding-bottom: 20px;
    color: #4b4b4b;
    font-family: 'MuseoSans_100';
    font-size: 18.5px;
    line-height: 1.3; }
  section .content-heading p {
    max-width: 700px;
    margin: auto; }
  section .content-heading p b,
  section .content-heading p strong {
    font-family: 'MuseoSans_500';
    font-weight: 100;
    color: #737272; }
  section .content-heading .additional-copy p {
    font-family: 'Museo300-Regular';
    font-weight: bold;
    font-size: 26px;
    color: #8c8c8c;
    text-align: center;
    letter-spacing: 1px; }
  .span-color {
    height: 33px; }
  .contact-us h2 {
    font-family: 'MuseoSans_100';
    text-transform: none;
    font-size: 22px;
    margin: 0px;
    color: #4d4d4d; }
  .contact-us h3 {
    font-family: 'MuseoSans_100';
    text-transform: none;
    font-weight: 700;
    font-size: 29px;
    margin: 0px;
    color: #4d4d4d; }
  .contact-us {
    padding: 40px 0px;
    background-color: #e8e7e7; }
  .button-contact {
    max-width: 170px;
    display: table;
    width: 170px; }
  .button-contact a {
    text-align: center;
    letter-spacing: 0.5px;
    display: table-cell;
    vertical-align: middle;
    transition: background-color 0.5s ease-out, color 0.5s ease-out, border-color 0.5s ease-out;
    font-weight: 700;
    border: 1px solid #4b4b4b;
    position: relative;
    padding: 20px 20px 19px 20px;
    font-family: 'MuseoSans_300';
    text-decoration: none;
    font-size: 14px;
    color: #4b4b4b;
    width: 179px; }
  .button-contact:hover a {
    background-color: #00a1df;
    border: 1px solid #00a1df;
    color: #fff;
    text-decoration: none; }
  .contact-us .content {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex; }
  .contact-us .container {
    max-width: 700px; }
  .button-contact a:hover {
    text-decoration: none; }
  .contact-us-text {
    padding-right: 74px;
    padding-top: 16px; }
  /* Footer */
  footer {
    background-color: #000; }
  footer .copyright-holder {
    text-align: left;
    padding-left: 0px; }
  footer .social-holder {
    text-align: right;
    padding-right: 0px; }
  .footer-nav {
    text-align: left;
    min-height: 110px; }
  .footer-nav h1 {
    font-size: 16px;
    font-family: 'MuseoSans_500';
    text-transform: uppercase;
    font-weight: bold;
    text-align: left;
    color: #ececec;
    margin-top: 0;
    letter-spacing: 1px; }
  .footer-nav .footer-link {
    text-align: left;
    font-family: 'MuseoSans_300';
    font-size: 14px;
    color: #929292;
    font-weight: bold;
    letter-spacing: 0.5px; }
  .footer-nav a {
    display: block; }
  .footer-nav a:hover {
    text-decoration: none;
    color: #d4d4d4; }
  footer {
    padding: 50px 0 0;
    text-align: center; }
  /* end Footer */
  .section-content-panel {
    padding: 0px; }
  .section-content-panel h1 {
    text-transform: none;
    font-size: 22px;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px; }
  .section-content-panel h2 {
    margin: 0;
    font-size: 16px;
    text-transform: none;
    text-align: center;
    color: rgba(75, 75, 75, 0.83); }
  .content-panel-content {
    padding: 15px 65px; }
  .content-panel-banner img {
    width: 100%; }
  .content-panel-image img {
    width: 100%; }
  .content-panel-box b,
  .content-panel-box strong {
    font-family: 'MuseoSans_500';
    font-weight: 100;
    color: #737272; }
  .section-content-panel .row {
    padding-bottom: 40px; }
  .section-content-panel .row-title {
    padding-bottom: 0px; }
  /*  end  */ }

@media (min-width: 768px) {
  /*
      .navbar-custom.affix {
        background-color: #222222;
        --padding: 10px 0;--
        height: 70px;
      }

      .navbar-custom.affix .navbar-brand {
        font-size: 1.5em;
      }
    */ }

header {
  background-image: url("../img/header-bg.jpg");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  text-align: center;
  color: white;
  margin-top: 101px; }

header .intro-text {
  padding-top: 100px;
  padding-bottom: 50px; }

header .intro-text .intro-lead-in {
  font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-size: 22px;
  line-height: 22px;
  margin-bottom: 25px; }

header .intro-text .intro-heading {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 25px; }

@media (min-width: 768px) {
  header .intro-text {
    padding-top: 250px;
    padding-bottom: 250px; }
  header .intro-text .intro-lead-in {
    font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: italic;
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 25px; }
  header .intro-text .intro-heading {
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 75px;
    line-height: 75px;
    margin-bottom: 0px; } }

section {
  padding: 100px 0; }

section h2.section-heading {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 0px;
  color: #4b4b4b;
  letter-spacing: 2px;
  line-height: 1.3;
  text-transform: none; }

section h2.sub-page-section-heading {
  font-size: 45px;
  margin-bottom: 0px;
  text-transform: none; }

section h3.section-subheading {
  font-size: 16px;
  font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: none;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 75px; }

@media (min-width: 768px) {
  section {
    padding: 70px 0; }
  .MemberProfilePage .account-section {
    padding-bottom: 0px; } }

.service-heading {
  margin: 15px 0;
  text-transform: none; }

#portfolio .portfolio-item {
  margin: 0 0 15px;
  right: 0; }

#portfolio .portfolio-item .portfolio-link {
  display: block;
  position: relative;
  /*max-width: 400px;*/
  margin: 0 auto; }

#portfolio .portfolio-item .portfolio-link .portfolio-hover {
  /*background: rgba(254, 209, 54, 0.9);*/
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s; }

#portfolio .portfolio-item .portfolio-link .portfolio-hover:hover {
  opacity: 1; }

#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
  /*position: absolute;
    width: 100%;
    height: 20px;
    font-size: 20px;
    text-align: center;
    top: 50%;
    margin-top: -12px;
    color: white;
    */
  position: absolute;
  width: 100%;
  text-align: center;
  color: white; }

#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content i {
  margin-top: -12px; }

#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h3,
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content h4 {
  margin: 0; }

#portfolio .portfolio-item .portfolio-caption {
  max-width: 400px;
  margin: 0 auto;
  background-color: white;
  text-align: center;
  padding: 25px; }

#portfolio .portfolio-item .portfolio-caption h4 {
  text-transform: none;
  margin: 0; }

#portfolio .portfolio-item .portfolio-caption p {
  font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-size: 16px;
  margin: 0; }

#portfolio * {
  z-index: 2; }

@media (min-width: 767px) {
  #portfolio .portfolio-item {
    margin: 0 0 0px;
    padding-left: 0px;
    padding-right: 0px; } }

.timeline {
  list-style: none;
  padding: 0;
  position: relative; }

.timeline:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #f1f1f1;
  left: 40px;
  margin-left: -1.5px; }

.timeline > li {
  margin-bottom: 50px;
  position: relative;
  min-height: 50px; }

.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table; }

.timeline > li:after {
  clear: both; }

.timeline > li .timeline-panel {
  width: 100%;
  float: right;
  padding: 0 20px 0 100px;
  position: relative;
  text-align: left; }

.timeline > li .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto; }

.timeline > li .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto; }

.timeline > li .timeline-image {
  left: 0;
  margin-left: 0;
  width: 80px;
  height: 80px;
  position: absolute;
  z-index: 100;
  background-color: #fed136;
  color: white;
  border-radius: 100%;
  border: 7px solid #f1f1f1;
  text-align: center; }

.timeline > li .timeline-image h4 {
  font-size: 10px;
  margin-top: 12px;
  line-height: 14px; }

.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
  text-align: left;
  padding: 0 20px 0 100px; }

.timeline > li.timeline-inverted > .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto; }

.timeline > li.timeline-inverted > .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto; }

.timeline > li:last-child {
  margin-bottom: 0; }

.timeline .timeline-heading h4 {
  margin-top: 0;
  color: inherit; }

.timeline .timeline-heading h4.subheading {
  text-transform: none; }

.timeline .timeline-body > p,
.timeline .timeline-body > ul {
  margin-bottom: 0; }

.specific-product-img {
  text-align: center;
  padding-bottom: 20px; }

.specific-product-content h1 {
  font-size: 23px;
  text-transform: none;
  text-align: center;
  font-family: 'Museo300-Regular'; }

.specific-product-section {
  padding: 0px 0px 0px; }

.specific-product-content p {
  margin-bottom: 0px;
  padding-bottom: 0px; }

.company-heading {
  font-size: 23px;
  margin-top: 0;
  margin-bottom: 15px;
  color: #4b4b4b;
  letter-spacing: 1px;
  text-transform: none; }

.middleColumn {
  width: 100%;
  padding: 20px 0px;
  text-align: left; }

.middleColumn input[type="text"],
.middleColumn input[type="password"],
.middleColumn input[type="email"] {
  width: 100%;
  padding: 10px 10px;
  max-width: 600px; }

.login .content-heading p {
  max-width: 100%; }

.hideme {
  visibility: visible; }

.forcehide {
  visibility: hidden !important; }

.dontgrow,
.kuro .dontgrow {
  -webkit-transition: all 0.5s ease-in-out;
  /* For Safari 3.1 to 6.0 */
  transition: all 0.5s  ease-in-out;
  max-width: 200px;
  height: 6px;
  width: 0%;
  margin: 50px 0px; }

.grow,
.kuro .grow {
  width: 200px;
  height: 6px; }

.link-box a,
.news-link {
  transition: background-color 0.5s ease-out, color 0.5s ease-out, border-color 0.5s ease-out;
  font-weight: 700;
  border: 1px solid #4b4b4b;
  position: relative;
  padding: 20px 20px 19px 20px;
  display: inline-block;
  font-family: 'MuseoSans_300';
  text-decoration: none;
  font-size: 14px;
  color: #4b4b4b; }

.link-box a:hover,
.news-link:hover {
  background-color: #00a1df;
  border: 1px solid #00a1df;
  color: #fff;
  text-decoration: none; }

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

.line-kura {
  padding-bottom: 0px;
  text-align: center; }

.parallax-content .dontgrow {
  margin: 30px 0px;
  filter: brightness(0) invert(1); }

.content-panel-banner .dontgrow {
  width: 0%; }

.content-panel-banner .grow {
  width: 200px; }

.specific-product-content {
  text-align: center; }

.comp-supplied .dontgrow {
  display: block;
  margin: 50px auto; }

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

.tabcontent .dontgrow {
  display: block;
  margin: 50px auto;
  filter: brightness(0) invert(1); }

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

@media (min-width: 768px) {
  .timeline:before {
    left: 50%; }
  .timeline > li {
    margin-bottom: 100px;
    min-height: 100px; }
  .timeline > li .timeline-panel {
    width: 41%;
    float: left;
    padding: 0 20px 20px 30px;
    text-align: right; }
  .timeline > li .timeline-image {
    width: 100px;
    height: 100px;
    left: 50%;
    margin-left: -50px; }
  .timeline > li .timeline-image h4 {
    font-size: 13px;
    margin-top: 16px;
    line-height: 18px; }
  .timeline > li.timeline-inverted > .timeline-panel {
    float: right;
    text-align: left;
    padding: 0 30px 20px 20px; } }

@media (min-width: 992px) {
  .timeline > li {
    min-height: 150px; }
  .timeline > li .timeline-panel {
    padding: 0 20px 20px; }
  .timeline > li .timeline-image {
    width: 150px;
    height: 150px;
    margin-left: -75px; }
  .timeline > li .timeline-image h4 {
    font-size: 18px;
    margin-top: 30px;
    line-height: 26px; }
  .timeline > li.timeline-inverted > .timeline-panel {
    padding: 0 20px 20px; }
  .maori-documents {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px; } }

@media (min-width: 1189px) {
  .panels-container {
    display: table; }
  .content-panel-image {
    padding-right: 65px;
    padding-left: 0px; }
  .left {
    padding-left: 65px;
    padding-right: 0px; } }

@media (min-width: 1200px) {
  .timeline > li {
    min-height: 170px; }
  .timeline > li .timeline-panel {
    padding: 0 20px 20px 100px; }
  .timeline > li .timeline-image {
    width: 170px;
    height: 170px;
    margin-left: -85px; }
  .timeline > li .timeline-image h4 {
    margin-top: 40px; }
  .timeline > li.timeline-inverted > .timeline-panel {
    padding: 0 100px 20px 20px; }
  .container-ContentPage {
    width: 100%; }
  .container-ContentPage .row {
    width: 1170px;
    margin: auto; }
  .container-ContentPage .large-banner-row-ContentDetails {
    width: 100%; }
  .maori-documents {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px; }
  .maori-documents-bg {
    padding: 80px 0px; }
  .maori-documents-link {
    padding: 7px 0px; }
  .documents-content-container {
    padding-bottom: 30px; }
  .MemberProfilePage .account-section {
    padding-bottom: 0px; } }

@media only screen and (max-width: 1199px) {
  #mainNav .container {
    width: 1030px; }
  .section-content-panel .container {
    width: 1170px; }
  .large-banner-row-ContentDetails {
    margin-left: 0px;
    margin-right: 0px; }
  .documents-container h1 {
    font-size: 35px; }
  .maori-documents-bg {
    padding: 30px 30px; } }

@media only screen and (max-width: 1188px) {
  .content-panel-image {
    width: 100%;
    float: none;
    max-width: 800px;
    margin: auto; }
  .content-panel-image img {
    max-height: inherit; }
  .section-content-panel .row {
    padding-bottom: 20px; }
  .content-panel-content {
    width: 100%;
    max-width: 700px;
    margin: auto;
    float: none; }
  .hero-bg {
    height: 300px; } }

@media only screen and (max-width: 1185px) {
  .section-content-panel .container {
    width: 100%; } }

@media only screen and (max-width: 1060px) {
  .navbar-brand img {
    height: 50px; }
  #mainNav .container {
    width: 965px; }
  .navbar-custom {
    background: linear-gradient(#fff 40%, #ececec 110%);
    height: 90px; }
  .navbar-nav > li > a {
    padding-top: 35px;
    padding-bottom: 35px; }
  #SearchForm_SearchForm_Search_Holder {
    top: 5px; } }

@media only screen and (max-width: 1045px) {
  /*.navbar-toggle {
        display: block;
    }

    .navbar-custom .navbar-toggle {
        background: linear-gradient(to top, rgb(17, 135, 185) , rgba(19, 147, 194, 0.82));
        border: none;
        font-family: 'Museo300-Regular';
    }

    .navbar-custom .navbar-toggle {
        background: linear-gradient(to top, rgb(17, 135, 185) , rgba(19, 147, 194, 0.82));
        border: none;
        font-family: 'Museo300-Regular';
    }


    .navbar-toggle {
        margin-top: 27px;
        margin-bottom: 27px;
    }

        */ }

@media only screen and (max-width: 1040px) {
  .navbar-right {
    padding-left: 10px; } }

@media only screen and (max-width: 991px) {
  .section-content-panel .row {
    padding-bottom: 10px; }
  .content-panel-content {
    padding-bottom: 40px; }
  .contact-us .content {
    display: block;
    width: 100%; }
  .contact-us {
    padding: 20px 0px;
    background: linear-gradient(#fff 40%, rgba(210, 210, 210, 0.87) 110%); }
  .contact-us-text {
    padding-right: 0px; }
  .contact-us h3 {
    font-family: 'Museo300-Regular';
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    margin: 0px;
    color: #4d4d4d;
    text-align: center;
    line-height: 27px; }
  .contact-us h2 {
    font-family: 'MuseoSans_100';
    text-transform: none;
    font-size: 18px;
    margin: 0px;
    color: #929292;
    text-align: center; }
  .contact-us-text {
    margin-bottom: 15px; }
  .button-contact {
    text-align: center;
    margin: auto; }
  .button-contact a {
    padding: 14px 20px 13px 20px; }
  .button-contact a:hover {
    text-decoration: none; }
  .footer-nav h1,
  footer .copyright-holder,
  .footer-nav .footer-link,
  .footer-nav {
    text-align: center; }
  .footer-nav {
    padding-bottom: 30px; }
  footer .social-holder {
    text-align: center; }
  .tabcontent h3 {
    text-align: center; }
  .tabcontent p {
    text-align: center;
    padding-left: 0px; }
  .contact-us-form {
    text-align: center;
    padding-top: 50px; }
  .tabcontent .text-container input[type="submit"] {
    margin: auto; }
  .news-section h2 {
    display: block;
    text-align: left;
    margin-left: 0px;
    padding-bottom: 10px; }
  .filter-column {
    text-align: left;
    padding-left: 6px;
    padding-right: 6px; }
  .filter-buttons {
    max-width: 150px;
    width: 150px;
    font-size: 14px;
    margin-right: 4px;
    margin-bottom: 10px; }
  .news-main-container {
    padding-top: 20px; }
  .documents-container {
    width: 100%; }
  .maori-documents {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px; }
  .account-section {
    padding-bottom: 50px; } }

@media (max-width: 892px) {
  .navbar-brand {
    padding: 5px 0px;
    line-height: 0px; }
  .navbar-brand img {
    height: 50px; }
  .navbar-custom {
    background: linear-gradient(#fff 40%, #ececec 110%);
    height: 90px; }
  .navbar-custom .navbar-toggle {
    border: none;
    font-family: 'MuseoSans_700';
    background-color: #00a1df; }
  .navbar-toggle {
    margin-top: 27px;
    margin-bottom: 24px; }
  header {
    margin-top: 90px; }
  .header-banner {
    margin-top: 90px; }
  section p {
    text-align: left;
    padding-bottom: 20px;
    color: #4b4b4b;
    font-family: 'MuseoSans_100';
    font-size: 17px;
    line-height: 1.3; }
  .content-heading {
    padding: 0px 30px; }
  section {
    padding: 50px 0px; }
  section h2.section-heading {
    font-size: 20px; }
  #portfolio .portfolio-item:nth-child(odd) {
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 5px; }
  #portfolio .portfolio-item:nth-child(even) {
    margin-bottom: 10px;
    padding-left: 5px;
    padding-right: 10px; }
  .contact-us .content {
    display: block; }
  .contact-us {
    padding: 20px 0px;
    background: linear-gradient(#fff 40%, rgba(210, 210, 210, 0.87) 110%); }
  .contact-us h3 {
    font-family: 'Museo300-Regular';
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    margin: 0px;
    color: #4d4d4d;
    text-align: center;
    line-height: 27px; }
  .contact-us h2 {
    font-family: 'MuseoSans_100';
    text-transform: none;
    font-size: 18px;
    margin: 0px;
    color: #929292;
    text-align: center; }
  .contact-us-text {
    margin-bottom: 15px; }
  .button-contact {
    max-width: 170px;
    display: table;
    width: 170px; }
  .button-contact a {
    text-align: center;
    letter-spacing: 0.5px;
    display: table-cell;
    vertical-align: middle;
    transition: background-color 0.5s ease-out, color 0.5s ease-out, border-color 0.5s ease-out;
    font-weight: 700;
    border: 1px solid #4b4b4b;
    position: relative;
    padding: 20px 20px 19px 20px;
    font-family: 'MuseoSans_300';
    text-decoration: none;
    font-size: 14px;
    color: #4b4b4b;
    width: 179px; }
  .button-contact a:hover {
    text-decoration: none; }
  section h2.sub-page-section-heading {
    font-size: 35px; }
  .section-content-panel {
    padding: 0px 0px; }
  .section-content-panel h1 {
    text-transform: none;
    font-size: 20px;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px; }
  section hr {
    max-width: 150px;
    border-top: 1px solid #949494;
    margin: 25px auto; }
  #main-section {
    padding-bottom: 50px; }
  .content-panel-content {
    padding-right: 30px;
    padding-left: 30px; }
  .content-panel-image img {
    width: 100%;
    padding-bottom: 20px; }
  .bg-light-gray {
    background-color: #ffffff; }
  .content-panel-banner {
    padding-bottom: 10px; }
  .content-panel-banner img {
    width: 100%; }
  footer {
    background-color: #000; }
  .footer-nav h1 {
    font-size: 16px;
    font-family: 'MuseoSans_500';
    text-transform: uppercase;
    font-weight: bold;
    color: #ececec;
    margin-top: 0;
    letter-spacing: 1px; }
  .footer-nav a {
    display: block; }
  .footer-nav a:hover {
    text-decoration: none; }
  .footer-nav .footer-link {
    font-family: 'MuseoSans_300';
    font-size: 14px;
    color: #929292;
    font-weight: bold;
    letter-spacing: 0.5px; }
  .footer-nav {
    text-align: center;
    padding-bottom: 30px; }
  footer {
    padding: 35px 0 35px;
    text-align: center; }
  .hero-bg {
    margin-top: 90px; }
  .navbar-right {
    padding-left: 10px; }
  .navbar-nav > li > a {
    padding-top: 35px;
    padding-bottom: 35px; }
  .dropdown-nav {
    top: 90px;
    height: 50px; }
  .navbar {
    margin-bottom: 0px; }
  .dropdown-nav-link {
    height: 50px; }
  .dropdown-nav a {
    font-size: 11px; }
  .nav > li > a {
    padding: 35px 8px; }
  .banner-parallax, .banner-parallax .parallax-window {
    margin-top: 90px; } }

@media (max-width: 767px) {
  #mainNav .container {
    width: 100%; }
  #SearchForm_SearchForm_Search_Holder {
    width: 260px;
    display: inline-block; }
  #SearchForm_SearchForm_action_results {
    border: transparent;
    background-color: transparent;
    font-size: 18px;
    color: #00a1df; }
  .navbar-brand {
    padding: 20px 0px 20px 30px;
    line-height: 0px; }
  .navbar-brand img {
    height: 50px; }
  .navbar-custom {
    background: linear-gradient(#fff 40%, #ececec 110%);
    height: 90px; }
  .navbar-custom .navbar-toggle {
    border: none;
    font-family: 'MuseoSans_700';
    background-color: #00a1df; }
  .navbar-toggle {
    margin-top: 27px;
    margin-bottom: 24px; }
  header {
    margin-top: 90px; }
  section p {
    text-align: left;
    padding-bottom: 20px;
    color: #4b4b4b;
    font-family: 'MuseoSans_100';
    font-size: 17px;
    line-height: 1.3; }
  .content-heading {
    padding: 0px 30px; }
  .content-panel-content {
    padding-bottom: 20px; }
  section {
    padding: 50px 0px; }
  section h2.section-heading {
    font-size: 20px; }
  #portfolio .portfolio-item:nth-child(odd) {
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px; }
  #portfolio .portfolio-item:nth-child(even) {
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px; }
  .contact-us .content {
    display: block; }
  .contact-us {
    padding: 20px 0px;
    background: linear-gradient(#fff 40%, rgba(210, 210, 210, 0.87) 110%); }
  .contact-us h3 {
    font-family: 'MuseoSans_100';
    text-transform: none;
    font-weight: 700;
    font-size: 20px;
    margin: 0px;
    color: #4d4d4d;
    text-align: center;
    line-height: 27px; }
  .contact-us h2 {
    font-family: 'MuseoSans_100';
    text-transform: none;
    font-size: 18px;
    margin: 0px;
    color: #929292;
    text-align: center; }
  .contact-us-text {
    margin-bottom: 15px; }
  .button-contact {
    max-width: 170px;
    display: table;
    width: 170px; }
  .button-contact a {
    color: #4b4b4b;
    font-family: 'MuseoSans_500';
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 10px 10px 10px 10px; }
  .button-contact a:hover {
    text-decoration: none; }
  section h2.sub-page-section-heading {
    font-size: 35px; }
  .section-content-panel {
    padding: 0px 0px; }
  .section-content-panel h1 {
    text-transform: none;
    font-size: 20px;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px; }
  .section-content-panel h2 {
    margin: 0;
    font-size: 16px;
    text-transform: none;
    text-align: center;
    color: rgba(75, 75, 75, 0.83); }
  section hr {
    max-width: 150px;
    border-top: 1px solid #949494;
    margin: 25px auto; }
  #main-section {
    padding-bottom: 25px; }
  .content-panel-content {
    padding-right: 30px;
    padding-left: 30px; }
  .content-panel-image img {
    width: 100%;
    padding-bottom: 20px; }
  .bg-light-gray {
    background-color: #ffffff; }
  .content-panel-banner {
    padding-bottom: 10px; }
  .content-panel-banner img {
    width: 100%; }
  footer {
    background-color: #000; }
  .footer-nav h1 {
    font-size: 16px;
    font-family: 'MuseoSans_500';
    text-transform: uppercase;
    font-weight: bold;
    color: #ececec;
    margin-top: 0;
    letter-spacing: 1px; }
  .footer-nav a {
    display: block; }
  .footer-nav a:hover {
    text-decoration: none; }
  .footer-nav .footer-link {
    font-family: 'MuseoSans_300';
    font-size: 14px;
    color: #929292;
    font-weight: bold;
    letter-spacing: 0.5px; }
  .footer-nav {
    text-align: center;
    padding-bottom: 30px; }
  footer {
    padding: 35px 0 35px;
    text-align: center; }
  .hero-bg {
    height: 250px; }
  .section-content-panel .parallax-window h1 {
    font-size: 25px;
    line-height: 35px; }
  .section-content-panel .parallax-window h2 {
    font-size: 17px;
    line-height: 30px; }
  .navbar-custom .nav li a {
    padding: 15px 30px; }
  .navbar-nav {
    margin: 0px 0px;
    padding-left: 0px; }
  .navbar-fixed-top .navbar-collapse {
    max-height: 320px; }
  .navbar-custom .navbar-nav > .active > a {
    background-color: #e7e7e7;
    color: #4d4d4d; }
  .navbar-custom .nav li:hover a {
    background-color: #e7e7e7;
    color: #4d4d4d; }
  .navbar-custom .navbar-nav > .active > a:hover, .navbar-custom .navbar-nav > .active > a:focus {
    color: #4d4d4d;
    background-color: #e7e7e7; }
  .mobile-nav {
    display: block;
    list-style-type: none; }
  .mobile-nav-extend {
    display: block;
    list-style-type: none; }
  #dropdown {
    display: none !important; }
  .navbar-custom .nav li .mobile-nav a {
    padding: 5px 5px;
    background-color: rgba(148, 14, 14, 0) !important;
    color: #4d4d4d !important;
    text-decoration: none !important; }
  .navbar-custom .nav li .mobile-nav li {
    padding: 15px 15px; }
  .account-section {
    padding-bottom: 0px !important; }
  .documents-container h1 {
    font-size: 28px; }
  .documents-content-container {
    padding-bottom: 20px; }
  .additional-content-row {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px; }
  #dropdown-shareholder {
    display: none !important; }
  div.tab button {
    width: 50%; }
  .company-image {
    padding-bottom: 15px; }
  .banner-parallax {
    display: none; }
  .hero-bg {
    display: table; }
  .searchResults,
  #PageNumbers {
    padding: 20px; } }

@media (max-width: 600px) {
  section h2.sub-page-section-heading {
    font-size: 28px; }
  .section-content-panel .parallax-window h1 {
    font-size: 22px;
    line-height: 35px; }
  .section-content-panel .parallax-window h2 {
    font-size: 15px;
    line-height: 30px; }
  .parallax-content {
    display: table-cell;
    vertical-align: middle;
    padding-left: 15px;
    padding-right: 15px; } }

@media (max-width: 550px) {
  .section-content-panel .parallax-window h1 {
    font-size: 20px;
    line-height: 31px; }
  .section-content-panel .parallax-window h2 {
    font-size: 15px;
    line-height: 23px; } }

.team-member {
  text-align: center;
  margin-bottom: 50px; }

.team-member img {
  margin: 0 auto;
  border: 7px solid white; }

.team-member h4 {
  margin-top: 25px;
  margin-bottom: 0;
  text-transform: none; }

.team-member p {
  margin-top: 0; }

aside.clients img {
  margin: 50px auto; }

aside.clients .links-images {
  margin: 40px auto;
  max-width: 150px; }

section#contact {
  background-color: #222222;
  background-image: url("../img/map-image.png");
  background-position: center;
  background-repeat: no-repeat; }

section#contact .section-heading {
  color: white; }

section#contact .form-group {
  margin-bottom: 25px; }

section#contact .form-group input,
section#contact .form-group textarea {
  padding: 20px; }

section#contact .form-group input.form-control {
  height: auto; }

section#contact .form-group textarea.form-control {
  height: 236px; }

section#contact .form-control:focus {
  border-color: #fed136;
  box-shadow: none; }

section#contact ::-webkit-input-placeholder {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: #eeeeee; }

section#contact :-moz-placeholder {
  /* Firefox 18- */
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: #eeeeee; }

section#contact ::-moz-placeholder {
  /* Firefox 19+ */
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: #eeeeee; }

section#contact :-ms-input-placeholder {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: #eeeeee; }

section#contact .text-danger {
  color: #e74c3c; }

footer span.copyright {
  line-height: 40px;
  font-family: 'MuseoSans_500';
  text-transform: uppercase;
  font-weight: bold;
  font-size: 15px;
  color: #929292; }

footer ul.quicklinks {
  margin-bottom: 0;
  line-height: 40px;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  text-transform: none; }

ul.social-buttons {
  margin-bottom: 0; }

ul.social-buttons li a {
  display: block;
  background-color: #929292;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  font-size: 20px;
  line-height: 40px;
  color: white;
  outline: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center; }

ul.social-buttons li a:hover,
ul.social-buttons li a:focus,
ul.social-buttons li a:active {
  background: linear-gradient(to top, #006e9c, rgba(33, 173, 224, 0.82)); }

ul.social-buttons li a:hover .fa,
ul.social-buttons li a:focus .fa,
ul.social-buttons li a:active .fa {
  color: #fff; }

.btn:focus,
.btn:active,
.btn.active,
.btn:active:focus {
  outline: none; }

.portfolio-modal .modal-dialog {
  margin: 0;
  height: 100%;
  width: auto; }

.portfolio-modal .modal-content {
  border-radius: 0;
  background-clip: border-box;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  min-height: 100%;
  padding: 100px 0;
  text-align: center; }

.portfolio-modal .modal-content h2 {
  margin-bottom: 15px;
  font-size: 3em; }

.portfolio-modal .modal-content p {
  margin-bottom: 30px; }

.portfolio-modal .modal-content p.item-intro {
  margin: 20px 0 30px;
  font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: italic;
  font-size: 16px; }

.portfolio-modal .modal-content ul.list-inline {
  margin-bottom: 30px;
  margin-top: 0; }

.portfolio-modal .modal-content img {
  margin-bottom: 30px; }

.portfolio-modal .close-modal {
  position: absolute;
  width: 75px;
  height: 75px;
  background-color: transparent;
  top: 25px;
  right: 25px;
  cursor: pointer; }

.portfolio-modal .close-modal:hover {
  opacity: 0.3; }

.portfolio-modal .close-modal .lr {
  height: 75px;
  width: 1px;
  margin-left: 35px;
  background-color: #222222;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  /* Safari and Chrome */
  z-index: 1051; }

.portfolio-modal .close-modal .lr .rl {
  height: 75px;
  width: 1px;
  background-color: #222222;
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  /* Safari and Chrome */
  z-index: 1052; }

.portfolio-modal .modal-backdrop {
  opacity: 0;
  display: none; }

::-moz-selection {
  text-shadow: none;
  background: #00a1df;
  color: #fff; }

::selection {
  text-shadow: none;
  background: #00a1df;
  color: #fff; }

img::selection {
  background: transparent; }

img::-moz-selection {
  background: transparent; }

body {
  webkit-tap-highlight-color: #fed136; }

button:focus, button:active {
  outline: none !important; }

input:focus, input:active {
  outline: none !important; }

select:focus, select:active {
  outline: none !important; }

.url-shareholders .shareholder-btn {
  border: 1px solid black;
  min-width: 280px;
  text-align: center;
  color: black;
  padding: 1rem;
  font-size: 18px; }

.url-shareholders .shareholder-btn:hover {
  background-color: #eee; }

#MemberLoginForm_LoginForm_Email_Holder label:after {
  content: ' or Username'; }

.grouped-document-listing h3 {
  margin-bottom: 30px; }

.grouped-document-listing .document-item {
  margin-bottom: 40px; }

.grouped-document-listing .document-item p:last-of-type {
  margin-bottom: 6px;
  padding-bottom: 0; }

.grouped-document-listing .document-item a.download {
  text-decoration: underline !important; }

.grouped-document-listing .document-item h4 {
  padding-left: 26px;
  position: relative;
  text-transform: none; }

.grouped-document-listing .document-item h4:before {
  content: '';
  width: 17px;
  height: 22px;
  background: url(../images/doc.svg) no-repeat;
  position: absolute;
  left: 0;
  top: -2px; }

.grouped-document-listing .document-item h4 a {
  text-decoration: underline; }

.nested-group {
  padding-left: 30px; }

.sidebar-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-right: 60px; }

.sidebar-nav li {
  border-bottom: 1px solid #eee; }

.sidebar-nav li.first {
  border-top: 1px solid #eee; }

.sidebar-nav li a {
  padding: 1rem 0;
  display: block; }

.whangara-opt {
  opacity: 0; }

.footer__partners {
  padding: 4rem 0 6rem;
  width: 100vw; }
  .footer__partners #FooterPartners {
    width: 100%;
    overflow: hidden; }
  .footer__partners h3 {
    text-align: center;
    width: 100%;
    margin-bottom: 4rem;
    font-size: 20px; }
  .footer__partners .partner--items {
    width: auto; }
  .footer__partners .partner--item {
    position: relative;
    display: inline-block;
    margin: 0 3rem;
    text-align: center; }
    .footer__partners .partner--item img {
      width: auto;
      height: 40px;
      margin-bottom: 1rem;
      object-fit: contain; }
    .footer__partners .partner--item h4 {
      display: none; }

.visually-hidden {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  position: absolute !important; }

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

.break-out {
  width: 100vw;
  position: relative;
  left: calc(-1 * (100vw - 100%) / 2);
  color: rgba(0, 0, 0, 0.6); }

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: ""; }

#mainNav {
  background: #fafafa;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
  padding: 0; }
  #mainNav li span {
    display: block; }
    #mainNav li span.reo {
      font-family: 'MuseoSans_500'; }
  #mainNav li .dropdown-toggle:after {
    display: none; }
  #mainNav li:hover {
    background: #4b4b4b !important; }
    #mainNav li:hover a.nav-link {
      color: white !important; }
    #mainNav li:hover a.nav-link.top-nav-link {
      padding: 40px 1rem 16px; }
  #mainNav li a.nav-link {
    font-size: 15px;
    padding-left: .75rem;
    padding-right: .75rem;
    color: #4b4b4b; }
    #mainNav li a.nav-link.top-nav-link {
      padding: 28px 1rem;
      border-right: 1px solid #eee;
      transition: all 0.3s; }
  #mainNav .dropdown-menu {
    box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1);
    background: #ececec;
    background: #4b4b4b;
    border: 0;
    border-radius: 0;
    padding-bottom: 1rem;
    min-width: 20rem; }
    #mainNav .dropdown-menu li a.dropdown-item {
      font-size: 15px;
      color: white; }
      #mainNav .dropdown-menu li a.dropdown-item:hover {
        background-color: #4b4b4b;
        text-decoration: underline;
        color: white; }
      #mainNav .dropdown-menu li a.dropdown-item.overview-link {
        font-family: 'MuseoSans_700'; }
    #mainNav .dropdown-menu li ul.sub-menu {
      list-style: none; }
      #mainNav .dropdown-menu li ul.sub-menu a.sub-item {
        color: white;
        text-decoration: none;
        line-height: 1.1;
        margin: .5rem 0;
        display: block;
        padding-right: .5rem; }
        #mainNav .dropdown-menu li ul.sub-menu a.sub-item:hover {
          text-decoration: underline; }
  #mainNav .navbar-toggler {
    margin-right: 1rem; }
  #mainNav .facebook-link {
    display: block;
    background-color: #ddd;
    height: 30px;
    width: 30px;
    border-radius: 100%;
    line-height: 32px;
    color: white;
    outline: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    margin-top: 34px;
    margin-left: 10px; }
    #mainNav .facebook-link i {
      color: #4b4b4b; }
    #mainNav .facebook-link:hover {
      background: linear-gradient(to top, #006e9c, rgba(33, 173, 224, 0.82)); }
      #mainNav .facebook-link:hover i {
        color: white; }

@media all and (min-width: 768px) {
  .navbar .nav-item .dropdown-menu {
    display: none; }
  .navbar .nav-item:hover .dropdown-menu {
    display: block; }
  .navbar .nav-item .dropdown-menu {
    margin-top: 0; } }

@media all and (max-width: 768px) {
  .navbar#mainNav .nav-item .dropdown-menu {
    display: block;
    background-color: #fff; }
  .navbar#mainNav li a.nav-link {
    padding: .75rem;
    font-family: 'MuseoSans_700'; }
    .navbar#mainNav li a.nav-link.dropdown-toggle:after {
      display: none; }
  .navbar#mainNav li:hover {
    background: #fff;
    color: #4b4b4b; } }

@media all and (max-width: 768px) {
  #mainNav li {
    color: #4b4b4b; }
    #mainNav li:hover {
      background: white !important; }
      #mainNav li:hover a.nav-link {
        color: #4b4b4b !important; }
    #mainNav li a {
      border: none !important; }
  #mainNav ul.sub-menu a.sub-item {
    color: #4b4b4b !important; }
  #mainNav a.dropdown-item {
    color: #4b4b4b !important; }
  #mainNav li:hover a.nav-link.top-nav-link {
    padding: 1rem; }
  #mainNav .dropdown-menu {
    box-shadow: none; }
  #mainNav .dropdown-menu li a.dropdown-item:hover {
    background-color: white !important; }
  #mainNav .overview-link {
    display: none; } }

footer .footer-bottom-part .social-holder {
  display: flex;
  justify-content: flex-end; }

footer .footer-nav {
  margin-bottom: 2rem; }
  footer .footer-nav a {
    color: #929292;
    text-decoration: none; }
    footer .footer-nav a:hover {
      text-decoration: underline;
      color: #00a1df; }

.userform {
  max-width: 600px !important; }
  .userform label.left {
    padding-left: 0; }
  .userform .middleColumn {
    padding: 0 0 1rem; }
  .userform select {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #767676;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s; }
  .userform textarea {
    width: 100%; }

.typ strong {
  font-family: 'MuseoSans_500'; }

section.noticeboard {
  padding-top: 1rem; }
  section.noticeboard .blog-filters {
    padding-top: .5rem;
    padding-bottom: 1.5rem; }
  section.noticeboard .noticeboard-items .blog-item .card {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    background: #002440;
    border: none; }
    section.noticeboard .noticeboard-items .blog-item .card .card-body {
      padding: 2rem;
      color: white !important; }
      section.noticeboard .noticeboard-items .blog-item .card .card-body h3 {
        color: white;
        margin-bottom: 1rem;
        font-size: 1.3rem; }
      section.noticeboard .noticeboard-items .blog-item .card .card-body h5 {
        font-size: 1rem; }
    section.noticeboard .noticeboard-items .blog-item .card .card-text p {
      color: white !important; }
    section.noticeboard .noticeboard-items .blog-item .card a {
      color: white; }

.BlogPost .back-to-panui {
  margin-bottom: 2rem;
  display: inline-block; }

.BlogPost .banner-parallax {
  position: relative; }

.BlogPost .parallax-window {
  display: flex;
  align-items: flex-end; }
  .BlogPost .parallax-window .banner--title {
    position: relative;
    padding-bottom: 6rem;
    color: #fff;
    z-index: 2; }
    .BlogPost .parallax-window .banner--title h1 {
      font-size: 3rem; }

.BlogPost .blogpost--container article {
  padding-top: 3rem;
  padding-bottom: 4rem;
  margin: 0; }
  .BlogPost .blogpost--container article h1 {
    margin-bottom: 1rem; }
  .BlogPost .blogpost--container article .elemental__content {
    margin-top: 4rem; }

.ElementPage #main-section {
  padding-bottom: 0; }

.LandingPage #portfolio .portfolio-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; }
  .LandingPage #portfolio .portfolio-item a.portfolio-link {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bolder;
    z-index: 2;
    text-align: center;
    font-size: 22px;
    font-family: 'MuseoSans_700'; }

.ContactUsPage .contact-item {
  margin-bottom: 2rem; }
  .ContactUsPage .contact-item__title {
    margin-bottom: 1rem; }
  .ContactUsPage .contact-item__content h3 {
    font-size: 20px;
    margin: .5rem 0 0; }
  .ContactUsPage .contact-item__content p {
    margin: 0 !important;
    padding: 0; }

.ContactUsPage .contact-page__form label.left {
  padding: 0; }

.ContactUsPage .elemental-area {
  background-color: #f1f1f1; }

section.elemental-area {
  padding-top: 30px; }

.element {
  padding-top: 2rem;
  padding-bottom: 2rem; }
  .element .element__title {
    margin-bottom: 1.5rem; }

.content-element__content {
  max-width: 800px;
  font-size: 18px;
  margin: 0 auto; }
  .content-element__content p {
    font-size: 18px; }

.imageblock-element .content {
  max-width: 800px;
  font-size: 18px;
  margin-bottom: 2rem; }

.imageblock-element.carousel .image-carousel {
  padding-left: .75rem;
  padding-right: .75rem; }

.imageblock-element.carousel .carousel-cell {
  margin-right: 20px; }

.imageblock-element .content-panel-banner:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 1, 1, 0.3);
  z-index: 0; }

.imageblock-element .parallax-content {
  position: relative;
  z-index: 1; }
  .imageblock-element .parallax-content h1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 35px;
    letter-spacing: 3px;
    line-height: 40px;
    font-family: 'Museo500-Regular'; }
  .imageblock-element .parallax-content h2 {
    color: #fff;
    font-size: 26px;
    font-family: 'Museo100-Regular';
    letter-spacing: 3px;
    line-height: 35px; }

.podcast-element .podcast-block--wrapper {
  padding: 2rem;
  background: #f5f5f5;
  border-radius: 12px; }

.map_frame {
  max-width: 800px;
  font-size: 18px;
  margin: 0 auto; }

#FarmsMap {
  height: 600px; }

.element.peopleblock .peopleblock-element .person-item {
  margin-bottom: 2rem; }
  .element.peopleblock .peopleblock-element .person-item .person-titles {
    margin-top: .5rem; }
    .element.peopleblock .peopleblock-element .person-item .person-titles h3, .element.peopleblock .peopleblock-element .person-item .person-titles h4 {
      margin: 0; }
    .element.peopleblock .peopleblock-element .person-item .person-titles h3 {
      font-size: 1.75rem; }
    .element.peopleblock .peopleblock-element .person-item .person-titles h4 {
      font-size: 1.1rem;
      margin-top: .5rem;
      font-weight: 700; }
  .element.peopleblock .peopleblock-element .person-item a {
    margin-top: .75rem;
    display: inline-block; }

.element.peopleblock .modal .modal-header {
  border: 0 !important;
  padding: 0 !important;
  overflow: hidden; }
  .element.peopleblock .modal .modal-header .btn-close {
    position: absolute;
    top: 20px;
    right: 20px; }

.element.peopleblock .modal .modal-body {
  padding: 2rem; }
  .element.peopleblock .modal .modal-body p {
    margin: 0; }
  .element.peopleblock .modal .modal-body .modal-intro .modal-title, .element.peopleblock .modal .modal-body .modal-intro .modal-role {
    text-align: center; }
  .element.peopleblock .modal .modal-body .modal-intro .dontgrow {
    display: block;
    margin: 30px auto; }

.tilegrid .tile-grid-item {
  position: relative;
  display: block;
  overflow: hidden; }
  .tilegrid .tile-grid-item:hover img {
    transform: scale(1.05); }
  .tilegrid .tile-grid-item img {
    transition: all .2s ease;
    object-fit: cover; }
  .tilegrid .tile-grid-item:after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0; }
  .tilegrid .tile-grid-item .tile-grid-content {
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
    z-index: 2; }
    .tilegrid .tile-grid-item .tile-grid-content h3, .tilegrid .tile-grid-item .tile-grid-content .tile-grid-caption, .tilegrid .tile-grid-item .tile-grid-content .tile-grid-caption p {
      color: white; }

/*# sourceMappingURL=style.css.map */
