@charset "UTF-8";
/* CSS Document */
/***********************************
    Normalise, Variables and Mixins
*************************************/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/* apply a natural box layout model to all elements */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/***********
    Basic Colours
************/
/**********/
/**************
    Primary Colours
*********************/
/********************
    Default Text Colours
********************/
/******************
    Nav Colours
*******************/
/*******************
    Form Styles
********************/
/*********************
    Borders/Shadows/Wrappers
***********************/
/*********************
    Breadcrumbs
***********************/
/**********************
    Alerts
***************/
/*******************
    Other Colours Styles
********************/
/*********************
    Social Colours
**********************/
/*********************
    Icons
**********************/
/***********************
    Widths and Heights
*************************/
/*************
    Mixins
**************/
/*****************
    Layouts
******************/
/* Used for indenting text out of box ready for background image */
.rep-style {
  display: block;
  overflow: hidden;
  text-indent: -9999px;
}
.inline-style,
form .half-fields > ul > li.gfield,
form .form-row .half,
.gform_wrapper form .customSelect .customSelectInner,
form .control-group .customSelect .customSelectInner,
.btn,
.related-links ul li a,
ul.block-links li,
.recent-announcements ul li,
ul.home-image-blocks li,
ul.home-image-blocks li .overlay .table .cell .cell-inner,
ul.home-image-blocks li a,
.home-project-highlight .cell .cell-inner,
.home-project-highlight .image img,
.home-coloured-block .main-text .table .cell .cell-inner,
.home-coloured-block .coloured-blocks ul li,
.home-coloured-block .coloured-blocks ul li div.table .cell .cell-inner,
.calendar .month li,
.pagination ul.pages li,
.home-share-price-button-block,
.share-price-box .price-block .l,
.share-price-box .price-block .r,
.sidebar-promo span,
header .nav-left #logo,
header .nav-left .left-box,
header .nav-left .search-box,
header .nav-right .main-menu-trigger,
header .nav-right .navs,
header .nav-right nav > ul > li,
header .nav-right nav.nav-main > ul > li > div.large-dropdown .projects .project > ul .sub-project,
footer .footer-bottom--bottom .right ul li,
footer .footer-phone,
footer .footer-address,
footer ul.footer-social li,
footer nav.footer-nav ul li,
form .form-submit {
  display: inline-block;
  *display: inline;
  /* ie7 fix */
  *zoom: 1;
  /* hasLayout ie7 trigger */
}
/* Sets box-sizing:content-box */
.content-box-style,
.wrapper {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
/* Sets box-sizing:border-box */
.border-box-style {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/***************
    Fixes/Resets
*****************/
/* Removes all default styling from list ready for unique layout */
.clean-list-style,
form .half-fields > ul,
.menu-style,
.sidebar-list > ul,
.sidebar-list > ul > li > ul,
.sidebar-list > ul > li > ul ul,
.related-links ul,
ul.block-links,
.recent-announcements ul,
ul.files,
ul.home-image-blocks,
.icon-list,
.home-coloured-block .coloured-blocks ul,
.calendar .month,
.files-list ul.files,
.pagination ul.pages,
.upcoming-reports ul,
.upcoming-reports ol,
.project-enquiry-details ul,
header .nav-right nav > ul,
header .nav-right nav.nav-main > ul > li > ul > li > ul,
header .nav-right nav.nav-main > ul > li > div.large-dropdown .projects .project ul,
footer .footer-bottom--bottom .right ul,
footer ul.footer-social,
footer nav.footer-nav ul,
header .nav-right nav.nav-main > ul > li > ul,
header .nav-right nav.nav-main > ul > li > div.large-dropdown .left ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.clean-list-style li,
form .half-fields > ul li,
.menu-style li,
.sidebar-list > ul li,
.sidebar-list > ul > li > ul li,
.sidebar-list > ul > li > ul ul li,
.related-links ul li,
ul.block-links li,
.recent-announcements ul li,
ul.files li,
ul.home-image-blocks li,
.icon-list li,
.home-coloured-block .coloured-blocks ul li,
.calendar .month li,
.files-list ul.files li,
.pagination ul.pages li,
.upcoming-reports ul li,
.upcoming-reports ol li,
.project-enquiry-details ul li,
header .nav-right nav > ul li,
header .nav-right nav.nav-main > ul > li > ul > li > ul li,
header .nav-right nav.nav-main > ul > li > div.large-dropdown .projects .project ul li,
footer .footer-bottom--bottom .right ul li,
footer ul.footer-social li,
footer nav.footer-nav ul li,
header .nav-right nav.nav-main > ul > li > ul li,
header .nav-right nav.nav-main > ul > li > div.large-dropdown .left ul li {
  margin: 0;
  padding: 0;
  background: none;
  line-height: 120%;
}
/* Smooths fonts. Use warily as it is resource intensive, and only supported on webkit */
.smooth-style,
html,
body {
  -webkit-font-smoothing: antialiased;
}
/* Fixes the flash on elements that occurs due to bxSlider turning on hardware rendering */
/* Generates nth-child where item is at the top */
/*
    Repeats rules for @i
    To access @i inside arguments, use @i, or @{i}
 */
/* Mixin to generate random number;
   int should be 0 or 1, 1 being to make it an integer
*/
/****************
    CSS3 Misc
*****************/
/******************
    Shadows
********************/
/*******************
    Transforms
*********************/
/*****************
    Transitions
****************/
/********************
    Gradients/Backgrounds
*********************/
/*****************
    Forms/Btns
 *****************/
/****************
    Fonts
*****************/
/***************
    Animations
****************/
/******************
    For
*****************/
/*******************
    Layout
********************/
/***********
    Fonts
***********/
/****************
    Fonts
*****************/
html,
body {
  font-family: 'Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
}
/****************
    Text Styles
*****************/
.defaultUl {
  padding-left: 20px;
  list-style: disc;
  margin: 15px 0;
}
.defaultUl li {
  font-family: 'Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #373d4d;
  font-size: 18px;
  line-height: 150%;
  margin: 0 0 30px;
  margin: 0;
}
.defaultUl li strong {
  font-weight: 700;
}
.defaultUl li em {
  font-style: italic;
}
.defaultUl li.intro {
  font-size: 21px;
  line-height: 165%;
  color: #333333;
}
.defaultOl {
  list-style: decimal;
  padding-left: 30px;
  margin: 15px 0;
}
.defaultOl li {
  font-family: 'Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #373d4d;
  font-size: 18px;
  line-height: 150%;
  margin: 0 0 30px;
  margin: 0;
}
.defaultOl li strong {
  font-weight: 700;
}
.defaultOl li em {
  font-style: italic;
}
.defaultOl li.intro {
  font-size: 21px;
  line-height: 165%;
  color: #333333;
}
/*
 *  Print Styles are declaring them
 */
h1 {
  margin: 10px 0 25px;
  font-size: 35px;
  display: block;
  color: #73726c;
  font-weight: 400;
}
h2 {
  color: #a7a399;
  margin: 20px 0;
  font-size: 40px;
  line-height: 125%;
  font-weight: 400;
  max-width: 1100px;
}
h3 {
  color: #000000;
  font-size: 25px;
  margin: 40px 0 25px;
  font-weight: 400;
}
h4 {
  color: #000000;
  font-size: 20px;
  margin: 30px 0 10px;
  font-weight: 400;
}
h5 {
  color: #000000;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  display: block;
  margin: 30px 0 15px;
  padding: 0 0 5px;
  border-bottom: 1px solid #E1E1E1;
}
h6 {
  color: #000000;
}
p {
  font-family: 'Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #373d4d;
  font-size: 18px;
  line-height: 150%;
  margin: 0 0 30px;
}
p strong {
  font-weight: 700;
}
p em {
  font-style: italic;
}
p.intro {
  font-size: 21px;
  line-height: 165%;
  color: #333333;
}
a {
  color: #0097d9;
  -webkit-transition: color 0.1s;
  -moz-transition: color 0.1s;
  -o-transition: color 0.1s;
  -ms-transition: color 0.1s;
  transition: color 0.1s;
  text-decoration: none;
}
a:hover {
  color: #0db5ff;
  text-decoration: none;
}
a:active {
  color: #a7a399;
}
ul {
  padding-left: 20px;
  list-style: disc;
  margin: 15px 0;
}
ul li {
  font-family: 'Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #373d4d;
  font-size: 18px;
  line-height: 150%;
  margin: 0 0 30px;
  margin: 0;
}
ul li strong {
  font-weight: 700;
}
ul li em {
  font-style: italic;
}
ul li.intro {
  font-size: 21px;
  line-height: 165%;
  color: #333333;
}
ol {
  list-style: decimal;
  padding-left: 30px;
  margin: 15px 0;
}
ol li {
  font-family: 'Arial,sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #373d4d;
  font-size: 18px;
  line-height: 150%;
  margin: 0 0 30px;
  margin: 0;
}
ol li strong {
  font-weight: 700;
}
ol li em {
  font-style: italic;
}
ol li.intro {
  font-size: 21px;
  line-height: 165%;
  color: #333333;
}
table {
  width: 100%;
  margin: 0 0 20px;
}
table thead th {
  color: #0097d9;
  font-size: 18px;
  border-bottom: 8px solid #0097d9;
  text-align: left;
  font-weight: 400;
  padding: 15px 12px;
}
table thead th:first-child {
  font-size: 20px;
}
table tbody td,
table tbody th {
  font-size: 16px;
  border-bottom: 2px solid #E2E1DC;
  padding: 15px 12px;
}
table tbody th {
  font-weight: 400;
  text-align: left;
}
/***********
    Forms
***********/
form {
  /****************
        Form Submit
    ****************/
}
form .half-fields > ul,
form .form-row {
  font-size: 0;
}
form .half-fields > ul > li.gfield,
form .form-row .half {
  vertical-align: top;
  width: 49%;
  width: calc((100% - 7px) / 2);
  margin-right: 2%!important;
  margin-right: calc(7px) !important;
}
form .half-fields > ul > li.gfield:last-child,
form .form-row .half:last-child,
form .half-fields > ul > li.gfield:nth-last-child(2),
form .form-row .half:nth-last-child(2) {
  margin-bottom: 0!important;
}
form .half-fields > ul > li.gfield:nth-child(even),
form .form-row .half:nth-child(even) {
  margin-right: 0!important;
}
form .half-fields > ul > li.gfield input.medium {
  width: 100%!important;
}
form .gform_body ul.gform_fields li.gfield label.gfield_label,
form .control-group label {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}
form .gform_body ul.gform_fields li.gfield .ginput_container,
form .control-group input {
  position: relative;
  z-index: 2;
}
form .gform_body ul.gform_fields li.gfield.active label.gfield_label,
form .control-group.active label {
  -webkit-transform: translate(0,-26px);
  -moz-transform: translate(0,-26px);
  -ms-transform: translate(0,-26px);
  -o-transform: translate(0,-26px);
  transform: translate(0,-26px);
}
form .gform_body ul.gform_fields li.gfield {
  margin-bottom: 28px!important;
  position: relative;
}
form .gform_body ul.gform_fields li.gfield .ginput_container {
  margin: 0!important;
}
form .gform_body ul.gform_fields li.gfield_html {
  max-width: 100%!important;
}
form li.gfield.gfield_html:empty {
  display: none;
}
form .control-group {
  position: relative;
  margin-bottom: 28px;
}
.gform_wrapper form,
form .control-group {
  /********************
            Custom Select
        ********************/
}
.gform_wrapper form label,
form .control-group label {
  color: #373d4d;
  font-size: 13px;
  display: inline-block;
  text-transform: uppercase;
  background: #DEDEDE;
  padding: 0 13px;
  line-height: 26px!important;
  font-weight: 400!important;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  margin: 0!important;
}
.gform_wrapper form input.text,
form .control-group input.text,
.gform_wrapper form input[type=text],
form .control-group input[type=text],
.gform_wrapper form input[type=email],
form .control-group input[type=email],
.gform_wrapper form input[type=password],
form .control-group input[type=password],
.gform_wrapper form input[type=number],
form .control-group input[type=number],
.gform_wrapper form input[type=date],
form .control-group input[type=date],
.gform_wrapper form textarea,
form .control-group textarea,
.gform_wrapper form .customSelect,
form .control-group .customSelect {
  font-size: 21px;
  color: #373d4d;
  background: #ffffff;
  line-height: 120%;
  width: 100%;
  border: 1px solid #cacaca;
  padding: 15px 25px;
  -webkit-box-shadow: -2px 4px 5px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: -2px 4px 5px 0px rgba(0, 0, 0, 0.07);
  box-shadow: -2px 4px 5px 0px rgba(0, 0, 0, 0.07);
}
.gform_wrapper form input.text,
form .control-group input.text,
.gform_wrapper form input[type=text],
form .control-group input[type=text],
.gform_wrapper form input[type=email],
form .control-group input[type=email],
.gform_wrapper form input[type=password],
form .control-group input[type=password],
.gform_wrapper form input[type=number],
form .control-group input[type=number],
.gform_wrapper form input[type=date],
form .control-group input[type=date],
.gform_wrapper form textarea,
form .control-group textarea {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.gform_wrapper form input.text::-webkit-input-placeholder,
form .control-group input.text::-webkit-input-placeholder,
.gform_wrapper form input[type=text]::-webkit-input-placeholder,
form .control-group input[type=text]::-webkit-input-placeholder,
.gform_wrapper form input[type=email]::-webkit-input-placeholder,
form .control-group input[type=email]::-webkit-input-placeholder,
.gform_wrapper form input[type=password]::-webkit-input-placeholder,
form .control-group input[type=password]::-webkit-input-placeholder,
.gform_wrapper form input[type=number]::-webkit-input-placeholder,
form .control-group input[type=number]::-webkit-input-placeholder,
.gform_wrapper form input[type=date]::-webkit-input-placeholder,
form .control-group input[type=date]::-webkit-input-placeholder,
.gform_wrapper form textarea::-webkit-input-placeholder,
form .control-group textarea::-webkit-input-placeholder {
  color: #999999;
}
.gform_wrapper form input.text:-moz-placeholder,
form .control-group input.text:-moz-placeholder,
.gform_wrapper form input[type=text]:-moz-placeholder,
form .control-group input[type=text]:-moz-placeholder,
.gform_wrapper form input[type=email]:-moz-placeholder,
form .control-group input[type=email]:-moz-placeholder,
.gform_wrapper form input[type=password]:-moz-placeholder,
form .control-group input[type=password]:-moz-placeholder,
.gform_wrapper form input[type=number]:-moz-placeholder,
form .control-group input[type=number]:-moz-placeholder,
.gform_wrapper form input[type=date]:-moz-placeholder,
form .control-group input[type=date]:-moz-placeholder,
.gform_wrapper form textarea:-moz-placeholder,
form .control-group textarea:-moz-placeholder {
  color: #999999;
}
.gform_wrapper form input.text::-moz-placeholder,
form .control-group input.text::-moz-placeholder,
.gform_wrapper form input[type=text]::-moz-placeholder,
form .control-group input[type=text]::-moz-placeholder,
.gform_wrapper form input[type=email]::-moz-placeholder,
form .control-group input[type=email]::-moz-placeholder,
.gform_wrapper form input[type=password]::-moz-placeholder,
form .control-group input[type=password]::-moz-placeholder,
.gform_wrapper form input[type=number]::-moz-placeholder,
form .control-group input[type=number]::-moz-placeholder,
.gform_wrapper form input[type=date]::-moz-placeholder,
form .control-group input[type=date]::-moz-placeholder,
.gform_wrapper form textarea::-moz-placeholder,
form .control-group textarea::-moz-placeholder {
  color: #999999;
}
.gform_wrapper form input.text:-ms-input-placeholder,
form .control-group input.text:-ms-input-placeholder,
.gform_wrapper form input[type=text]:-ms-input-placeholder,
form .control-group input[type=text]:-ms-input-placeholder,
.gform_wrapper form input[type=email]:-ms-input-placeholder,
form .control-group input[type=email]:-ms-input-placeholder,
.gform_wrapper form input[type=password]:-ms-input-placeholder,
form .control-group input[type=password]:-ms-input-placeholder,
.gform_wrapper form input[type=number]:-ms-input-placeholder,
form .control-group input[type=number]:-ms-input-placeholder,
.gform_wrapper form input[type=date]:-ms-input-placeholder,
form .control-group input[type=date]:-ms-input-placeholder,
.gform_wrapper form textarea:-ms-input-placeholder,
form .control-group textarea:-ms-input-placeholder {
  color: #999999;
}
.gform_wrapper form input.text:focus,
form .control-group input.text:focus,
.gform_wrapper form input[type=text]:focus,
form .control-group input[type=text]:focus,
.gform_wrapper form input[type=email]:focus,
form .control-group input[type=email]:focus,
.gform_wrapper form input[type=password]:focus,
form .control-group input[type=password]:focus,
.gform_wrapper form input[type=number]:focus,
form .control-group input[type=number]:focus,
.gform_wrapper form input[type=date]:focus,
form .control-group input[type=date]:focus,
.gform_wrapper form textarea:focus,
form .control-group textarea:focus {
  outline: none;
  border-color: #0097d9 !important;
}
.gform_wrapper form input.text:focus::-webkit-input-placeholder,
form .control-group input.text:focus::-webkit-input-placeholder,
.gform_wrapper form input[type=text]:focus::-webkit-input-placeholder,
form .control-group input[type=text]:focus::-webkit-input-placeholder,
.gform_wrapper form input[type=email]:focus::-webkit-input-placeholder,
form .control-group input[type=email]:focus::-webkit-input-placeholder,
.gform_wrapper form input[type=password]:focus::-webkit-input-placeholder,
form .control-group input[type=password]:focus::-webkit-input-placeholder,
.gform_wrapper form input[type=number]:focus::-webkit-input-placeholder,
form .control-group input[type=number]:focus::-webkit-input-placeholder,
.gform_wrapper form input[type=date]:focus::-webkit-input-placeholder,
form .control-group input[type=date]:focus::-webkit-input-placeholder,
.gform_wrapper form textarea:focus::-webkit-input-placeholder,
form .control-group textarea:focus::-webkit-input-placeholder {
  color: #999999;
}
.gform_wrapper form input.text:focus:-moz-placeholder,
form .control-group input.text:focus:-moz-placeholder,
.gform_wrapper form input[type=text]:focus:-moz-placeholder,
form .control-group input[type=text]:focus:-moz-placeholder,
.gform_wrapper form input[type=email]:focus:-moz-placeholder,
form .control-group input[type=email]:focus:-moz-placeholder,
.gform_wrapper form input[type=password]:focus:-moz-placeholder,
form .control-group input[type=password]:focus:-moz-placeholder,
.gform_wrapper form input[type=number]:focus:-moz-placeholder,
form .control-group input[type=number]:focus:-moz-placeholder,
.gform_wrapper form input[type=date]:focus:-moz-placeholder,
form .control-group input[type=date]:focus:-moz-placeholder,
.gform_wrapper form textarea:focus:-moz-placeholder,
form .control-group textarea:focus:-moz-placeholder {
  color: #999999;
}
.gform_wrapper form input.text:focus::-moz-placeholder,
form .control-group input.text:focus::-moz-placeholder,
.gform_wrapper form input[type=text]:focus::-moz-placeholder,
form .control-group input[type=text]:focus::-moz-placeholder,
.gform_wrapper form input[type=email]:focus::-moz-placeholder,
form .control-group input[type=email]:focus::-moz-placeholder,
.gform_wrapper form input[type=password]:focus::-moz-placeholder,
form .control-group input[type=password]:focus::-moz-placeholder,
.gform_wrapper form input[type=number]:focus::-moz-placeholder,
form .control-group input[type=number]:focus::-moz-placeholder,
.gform_wrapper form input[type=date]:focus::-moz-placeholder,
form .control-group input[type=date]:focus::-moz-placeholder,
.gform_wrapper form textarea:focus::-moz-placeholder,
form .control-group textarea:focus::-moz-placeholder {
  color: #999999;
}
.gform_wrapper form input.text:focus:-ms-input-placeholder,
form .control-group input.text:focus:-ms-input-placeholder,
.gform_wrapper form input[type=text]:focus:-ms-input-placeholder,
form .control-group input[type=text]:focus:-ms-input-placeholder,
.gform_wrapper form input[type=email]:focus:-ms-input-placeholder,
form .control-group input[type=email]:focus:-ms-input-placeholder,
.gform_wrapper form input[type=password]:focus:-ms-input-placeholder,
form .control-group input[type=password]:focus:-ms-input-placeholder,
.gform_wrapper form input[type=number]:focus:-ms-input-placeholder,
form .control-group input[type=number]:focus:-ms-input-placeholder,
.gform_wrapper form input[type=date]:focus:-ms-input-placeholder,
form .control-group input[type=date]:focus:-ms-input-placeholder,
.gform_wrapper form textarea:focus:-ms-input-placeholder,
form .control-group textarea:focus:-ms-input-placeholder {
  color: #999999;
}
.gform_wrapper form textarea.medium,
form .control-group textarea.medium {
  height: 200px;
  width: 100%;
  clear: both;
}
.gform_wrapper form select,
form .control-group select {
  width: 100%;
  z-index: 2;
}
.gform_wrapper form .customSelect,
form .control-group .customSelect {
  padding: 0;
  position: relative;
}
.gform_wrapper form .customSelect .customSelectInner,
form .control-group .customSelect .customSelectInner {
  padding: 14px 0 11px 25px!important;
  width: auto !important;
}
.gform_wrapper form .customSelect .arrow,
form .control-group .customSelect .arrow {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -15px;
  display: block;
  text-align: center;
  width: 50px;
  color: #A7A399;
  line-height: 30px;
}
.gform_wrapper form .customSelect.customSelectDisabledOption,
form .control-group .customSelect.customSelectDisabledOption {
  color: #999999;
}
.gform_wrapper form .gform_footer input[type=submit] {
  border: none;
  background: #0097d9;
  color: #ffffff;
  font-size: 18px;
  padding: 20px 50px 20px 30px;
  display: inline-block;
  outline: none;
  max-width: 350px;
  width: 100%;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -o-transition: all 0.1s;
  -ms-transition: all 0.1s;
  transition: all 0.1s;
  text-align: left;
  position: relative;
}
.gform_wrapper form .gform_footer input[type=submit]:after {
  display: block;
  text-align: center;
  content: '\e80c';
  font-family: "senex";
  width: 50px;
  position: absolute;
  right: 0;
  line-height: 20px;
  color: #ffffff;
  top: 50%;
  margin-top: -10px;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -o-transition: all 0.1s;
  -ms-transition: all 0.1s;
  transition: all 0.1s;
  font-size: 15px;
}
.gform_wrapper form .gform_footer input[type=submit]:hover {
  background: #0db5ff;
}
.gform_wrapper form .gform_footer input[type=submit]:active {
  background: #a7a399;
}
form .form-submit {
  clear: both;
}
.gform_confirmation_message {
  color: #000000;
  font-size: 25px;
  margin: 40px 0 25px;
  font-weight: 400;
}
/***********
 Gravity Forms Fixes
***********/
body.page-template-template-contact .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  padding: 15px 25px;
}
body.page-template-template-contact .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ul,
body.page-template-template-contact body.page-template-template-contact .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ul {
  margin: 0 !important;
}
/**********************
    Common Styles
***********************/
/*****************
    Common Styles
*****************/
.clearfix-style:after,
.equal-cols:after,
.content-cols:after,
.team-list:after,
.home-hero-items:after,
.home-intro-lr:after,
.home-project-highlight .list-map:after,
.presentations-reports:after,
.share-price-box .price-block:after,
.operation-page-title .wrapper:after,
header:after,
header .nav-right nav.nav-main > ul > li > div.large-dropdown .dropdown-inner:after,
footer .footer-bottom--top:after,
footer .footer-bottom--bottom:after {
  display: table;
  content: "";
  clear: both;
}
.clear {
  clear: both;
}
/****************
    Wrappers/Layouts
*****************/
.wrapper {
  max-width: 1445px;
  margin: 0 auto;
  position: relative;
  padding: 0 80px;
}
.block {
  clear: both;
  position: relative;
}
.block.padded {
  padding-top: 50px;
  padding-bottom: 50px;
}
.block.padded.padding-large {
  padding-top: 80px;
  padding-bottom: 80px;
}
.block.secondary-colour {
  background: #f1efe9;
}
.article-body h1:first-child,
.article-body h2:first-child,
.article-body h3:first-child,
.article-body h4:first-child,
.article-body h5:first-child,
.article-body h6:first-child,
.article-body ul:first-child,
.article-body ol:first-child,
.article-body li:first-child,
.article-body p:first-child {
  margin-top: 0;
}
.article-body table {
  max-width: 100%;
  width: auto;
}
.article-body img {
  max-width: 100%;
  height: auto!important;
}
.equal-cols .col {
  width: 50%;
  float: left;
  padding-right: 10%;
}
.content-cols .main-col {
  float: left;
  width: 74%;
  width: calc(100% - 350px);
  padding-right: 10%;
}
.content-cols .sidebar {
  width: 26%;
  width: calc(350px);
  float: right;
}
/**********************
    Btn stylings
***********************/
.btn,
form .form-submit {
  outline: none;
  border: none;
  overflow: visible;
  cursor: pointer;
  line-height: 120%;
  padding: 18px 50px 18px 25px;
  font-size: 20px;
  text-align: left;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -o-transition: all 0.1s;
  -ms-transition: all 0.1s;
  transition: all 0.1s;
  position: relative;
}
.btn-primary,
form .form-submit {
  background: #0097d9;
  color: #ffffff;
}
.btn-primary:after,
form .form-submit:after {
  content: '\e80c';
  font-family: "senex";
  display: block;
  line-height: 20px;
  font-size: 15px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -10px;
  text-align: center;
  width: 45px;
  color: #ffffff;
}
.btn-primary:hover,
form .form-submit:hover {
  color: #ffffff;
  background: #0db5ff;
}
.btn-primary:active,
form .form-submit:active {
  color: #ffffff;
  background: #0074a6;
}
.btn-primary:disabled,
form .form-submit:disabled {
  color: #cccccc;
  background: #73d4ff;
}
.dual-button {
  font-size: 0;
}
.dual-button a {
  vertical-align: top;
  width: 49%;
  width: calc((100% - 7px) / 2);
  margin-right: 2%;
  margin-right: calc(7px);
}
.dual-button a:nth-child(even) {
  margin-right: 0;
}
/*********************
    Sliding arrow
***********************/
a > i.senex-angle-right-arrow {
  position: relative;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
a:hover > i.senex-angle-right-circled,
a:active > i.senex-angle-right-circled {
  -webkit-transform: translate(10px,0);
  -moz-transform: translate(10px,0);
  -ms-transform: translate(10px,0);
  -o-transform: translate(10px,0);
  transform: translate(10px,0);
}
/*********************
    Alerts
***********************/
.alert {
  padding: 15px;
  border: 1px solid transparent;
  font-size: 16px;
}
.alert.alert-success {
  color: #3c763d;
  border-color: #dff0d8;
  background-color: #d6e9c6;
}
.alert.alert-info {
  color: #31708f;
  border-color: #bce8f1;
  background-color: #d9edf7;
}
.alert.alert-warning {
  color: #8a6d3b;
  border-color: #faebcc;
  background-color: #fcf8e3;
}
.alert.alert-error {
  color: #a94442;
  border-color: #ebccd1;
  background-color: #f2dede;
}
/************************
    Menu Style
*********************/
.menu-a-style,
.menu-style > li > a,
header .nav-right nav.nav-main > ul > li > div.large-dropdown .projects .project h3 a,
header .nav-right nav.nav-main > ul > li > ul > li > a,
header .nav-right nav.nav-main > ul > li > div.large-dropdown .left ul > li > a {
  display: block;
  padding: 10px 30px 10px 0;
  border-bottom: 1px solid #EEEEEE;
  color: #5b5b5b;
  position: relative;
  font-size: 17px;
  line-height: 120%;
}
.menu-a-style:after,
.menu-style > li > a:after,
header .nav-right nav.nav-main > ul > li > div.large-dropdown .projects .project h3 a:after,
header .nav-right nav.nav-main > ul > li > ul > li > a:after,
header .nav-right nav.nav-main > ul > li > div.large-dropdown .left ul > li > a:after {
  content: '\e80d';
  font-family: "senex";
  font-size: 15px;
  color: #a7a399;
  display: block;
  text-align: right;
  width: 25px;
  line-height: 24px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -12px;
}
.menu-a-style:hover,
.menu-style > li > a:hover,
header .nav-right nav.nav-main > ul > li > div.large-dropdown .projects .project h3 a:hover,
header .nav-right nav.nav-main > ul > li > ul > li > a:hover,
header .nav-right nav.nav-main > ul > li > div.large-dropdown .left ul > li > a:hover {
  color: #0db5ff;
}
.menu-a-style:active,
.menu-style > li > a:active,
header .nav-right nav.nav-main > ul > li > div.large-dropdown .projects .project h3 a:active,
header .nav-right nav.nav-main > ul > li > ul > li > a:active,
header .nav-right nav.nav-main > ul > li > div.large-dropdown .left ul > li > a:active {
  color: #a7a399;
}
.menu-a-style:active:after,
.menu-style > li > a:active:after,
header .nav-right nav.nav-main > ul > li > div.large-dropdown .projects .project h3 a:active:after,
header .nav-right nav.nav-main > ul > li > ul > li > a:active:after,
header .nav-right nav.nav-main > ul > li > div.large-dropdown .left ul > li > a:active:after {
  color: #0097d9;
}
.menu-style > li:last-child > a,
header .nav-right nav.nav-main > ul > li > ul > li:last-child > a,
header .nav-right nav.nav-main > ul > li > div.large-dropdown .left ul > li:last-child > a {
  border-bottom: none;
}
/************************
    Hero Image
********************/
.hero-image {
  width: 100%;
  height: 500px;
  background-image: url('../images/hero_banner.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/************************
    Title Area
********************/
.title-area h1:last-child,
.title-area h2:last-child {
  margin-bottom: 0;
}
.title-area .right-image {
  position: absolute;
  right: 5%;
  bottom: -50px;
  width: 26%;
  width: calc(350px);
  display: block;
}
/************************
    Breadcrumbs
********************/
.breadcrumbs {
  margin: 10px 0 40px;
  display: block;
}
.breadcrumbs a,
.breadcrumbs span.breadcrumb_last {
  font-size: 13px;
}
.breadcrumbs span.breadcrumb_last {
  color: #a7a399;
}
.breadcrumbs a {
  color: #a7a399;
  text-decoration: underline;
}
.breadcrumbs a:hover {
  text-decoration: none;
  color: #8f8a7e;
}
.breadcrumbs a:active {
  color: #373d4d;
}
/************************
    Sidebar List
********************/
.sidebar-list > ul > li {
  font-size: 20px;
  border-bottom: 1px solid #E0E0E0;
  padding: 20px 0;
}
.sidebar-list > ul > li > a {
  display: block;
  padding: 5px 50px 5px 0;
  position: relative;
}
.sidebar-list > ul > li > a:after {
  content: '\e80d';
  font-family: "senex";
  display: block;
  font-size: 15px;
  color: #0097d9;
  width: 50px;
  line-height: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -10px;
  text-align: center;
}
.sidebar-list > ul > li > a:hover:after {
  color: #0db5ff;
}
.sidebar-list > ul > li > ul {
  display: none;
}
.sidebar-list > ul > li > ul li {
  font-size: 14px;
  border: none;
  position: relative;
}
.sidebar-list > ul > li > ul li a {
  display: block;
  color: #a7a399;
  padding: 6px 0;
}
.sidebar-list > ul > li > ul li a:after {
  display: none;
}
.sidebar-list > ul > li > ul li a:hover {
  color: #73726c;
}
.sidebar-list > ul > li > ul li a:active {
  color: #373d4d;
}
.sidebar-list > ul > li > ul > li.current_page_item > ul,
.sidebar-list > ul > li > ul > li.current_page_ancestor > ul {
  display: block;
}
.sidebar-list > ul > li > ul > li.current_page_item > a:before,
.sidebar-list > ul > li > ul > li.current_page_ancestor > a:before {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.sidebar-list > ul > li > ul > li > a {
  padding-left: 17px;
  position: relative;
}
.sidebar-list > ul > li > ul > li.page_item_has_children > a:before {
  content: "";
  display: block;
  width: 9px;
  height: 3px;
  background: #a7a399;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
  margin-top: -1.5px;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.sidebar-list > ul > li > ul ul {
  display: none;
  padding-left: 30px;
}
.sidebar-list > ul > li > ul ul li {
  padding-left: 0;
}
.sidebar-list > ul > li.current_page_item > a,
.sidebar-list > ul > li.current_page_ancestor > a,
.sidebar-list > ul > li.current_page_ancestor > a > a:active {
  color: #a7a399;
}
.sidebar-list > ul > li.current_page_item > a:after,
.sidebar-list > ul > li.current_page_ancestor > a:after,
.sidebar-list > ul > li.current_page_ancestor > a > a:active:after {
  color: #a7a399;
}
.sidebar-list > ul > li.current_page_item > ul > li.page_item_has_children {
  font-weight: 700;
}
.sidebar-list > ul > li.current_page_item > ul > li.page_item_has_children > a:before {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.sidebar-list > ul > li.current_page_item > ul > li.page_item_has_children > a:after {
  content: "";
  display: block;
  width: 3px;
  height: 9px;
  background: #a7a399;
  position: absolute;
  left: 3px;
  top: 50%;
  margin-top: -45px;
  margin-top: -4.5px;
}
.sidebar-list > ul > li:first-child {
  padding-top: 0;
}
.sidebar-list > ul > li:last-child {
  border-bottom: 0;
}
.sidebar-list > ul > li.current_page_item > ul,
.sidebar-list > ul > li.current_page_ancestor > ul {
  display: block;
}
/*******************
  Accordion
********************/
.accordion .item {
  border-bottom: 2px solid #0097d9;
}
.accordion .item .item-title {
  cursor: pointer;
  padding: 30px 30px 30px 0;
  display: block;
  position: relative;
  font-size: 21px;
  color: #000000;
  margin: 0;
}
.accordion .item .item-title:after {
  content: '\e809';
  display: block;
  font-family: "senex";
  width: 30px;
  text-align: right;
  line-height: 20px;
  position: absolute;
  font-size: 15px;
  top: 50%;
  right: 0;
  margin-top: -10px;
  color: #0097d9;
}
.accordion .item .item-content {
  display: none;
  padding: 0 0 5px;
}
.accordion .item.active .item-title:after {
  content: '\e808';
}
.accordion .item:last-child {
  border-bottom: none;
}
/****************************
    Related Links
************************/
.related-links {
  margin: 60px 0 -50px;
}
.related-links h5 {
  margin: 0;
}
.related-links ul {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.related-links ul li {
  display: table-cell;
  position: relative;
  border-right: 1px solid #E1E1E1;
  vertical-align: middle;
  padding: 15px 30px 20px;
  height: 125px;
}
.related-links ul li:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  width: calc(100% + 1px);
  height: 10px;
  background-color: #0097d9;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.related-links ul li:first-child {
  padding-left: 0;
}
.related-links ul li:last-child {
  border-right: none;
}
.related-links ul li:last-child:after {
  width: 100%;
}
.related-links ul li:hover:after {
  background-color: #0db5ff;
}
.related-links ul li a {
  font-size: 28px;
  color: #000000;
  position: relative;
  display: block;
  padding-right: 30px;
  line-height: 110%;
}
.related-links ul li a:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.related-links ul li a:active {
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
}
.related-links ul li a:after {
  content: '\e80d';
  font-family: "senex";
  display: inline-block;
  vertical-align: middle;
  color: #0097d9;
  font-size: 15px;
  margin-left: 5px;
  position: absolute;
  right: 0;
  top: 0;
}
/****************************
    Leaders Block 
************************/
.team-list .member {
  width: 49.5%;
  width: calc((100% - 10px) / 2);
  margin-right: 1%;
  margin-right: calc(10px);
  margin-bottom: 30px;
  float: left;
}
.team-list .member:nth-child(even) {
  margin-right: 0;
}
.team-list .member .image-container {
  position: relative;
  border-bottom: 6px solid #0097d9;
  margin: 0 0 15px;
  /*&:after {
                content: "";
                padding-top: 76%;
                display: block;
                width: 100%;
            }*/
}
.team-list .member .image-container .table {
  width: 100%;
  height: 76%;
  display: table;
}
.team-list .member .image-container .table .cell {
  display: table-cell;
  vertical-align: bottom;
  text-align: center;
}
.team-list .member .image-container img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  margin-bottom: -4px;
}
.team-list .member h2,
.team-list .member h3 {
  font-size: 18px;
}
.team-list .member h2 {
  margin: 0 0 3px;
}
.team-list .member h2 i {
  font-size: 13px;
}
.team-list .member h3 {
  margin: 0 0 15px;
}
.team-list .member span.qualifications {
  text-transform: uppercase;
  font-size: 12px;
  color: #5b5b5b;
  display: block;
}
/*************************
    Team Member Title
*************************/
.team-member-title {
  width: 74%;
  width: calc(100% - 350px);
  padding-right: 10%;
  min-height: 250px;
  padding-top: 50px;
}
.team-member-title .title-secondary {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 2px solid #D7D3CB;
}
.team-member-title .title-secondary h2 {
  font-size: 28px;
  margin: 0 0 5px;
}
.team-member-title .title-secondary h3 {
  text-transform: none;
  font-size: 13px;
  font-weight: 400;
  color: #A7A399;
  margin: 0;
}
/**************************
    Slider
**********************/
/** VARIABLES
===================================*/
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  margin: 0 auto 60px;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.bx-wrapper img {
  max-width: 100%;
  display: block;
}
.bxslider {
  margin: 0;
  padding: 0;
}
ul.bxslider {
  list-style: none;
}
.bx-viewport {
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
}
/** THEME
===================================*/
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -30px;
  width: 100%;
}
/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url('../bower_components/dw-bxslider-4/dist/images/bx_loader.gif') center center no-repeat #ffffff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}
/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: #666;
  padding-top: 20px;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  background: #666;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active,
.bx-wrapper .bx-pager.bx-default-pager a:focus {
  background: #000;
}
.bx-wrapper .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}
.bx-wrapper .bx-pager-item {
  font-size: 0;
  line-height: 0;
}
.page-gallery {
  margin: 40px 0 0;
}
.page-gallery .slider {
  position: relative;
}
.page-gallery .controls a {
  display: block;
  width: 50px;
  text-align: center;
  line-height: 50px;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  color: #ffffff;
  font-size: 30px;
}
.page-gallery .controls a:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.page-gallery .controls a:active {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  color: #0097d9;
}
.page-gallery .controls a.slide-prev {
  left: 0;
}
.page-gallery .controls a.slide-next {
  right: 0;
}
/**************************
    Post List
**********************/
.post-list .post {
  overflow: hidden;
  border-bottom: 2px solid #e3e1dd;
  padding-bottom: 20px;
  margin-bottom: 35px;
}
.post-list .post:last-child {
  border-bottom: none;
}
.post-list .post .image {
  float: right;
  width: 190px;
  margin-left: 30px;
}
.post-list .post .text {
  overflow: hidden;
}
.post-list .post .text span.date {
  text-transform: uppercase;
  color: #5b5b5b;
  font-size: 12px;
  margin: 0 0 10px;
}
.post-list .post .text h2 {
  margin: 0 0 20px;
  font-size: 21px;
}
.post-list .post .text h2 a {
  position: relative;
  padding-right: 25px;
  display: block;
}
.post-list .post .text h2 a i {
  position: absolute;
  top: 0;
  right: 0;
}
.post-list .post .text p {
  margin: 0;
}
p.blog-author {
  font-size: 14px;
  text-transform: uppercase;
  color: #5b5b5b;
  margin: 0 0 30px;
}
/**************************
    Home Items
**********************/
ul.block-links {
  width: 100%;
  font-size: 0;
}
ul.block-links li {
  vertical-align: top;
  width: 33%;
}
ul.block-links li:nth-child(even) a {
  background: #9e9a87;
}
ul.block-links li:nth-child(even) a:hover {
  background: #b5b2a3;
}
ul.block-links li:nth-child(even) a:active {
  background: #86816c;
}
ul.block-links li a {
  display: block;
  height: 140px;
  color: #ffffff;
  text-align: center;
  background: #999581;
  padding: 30px 15px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
ul.block-links li a:hover {
  background: #b0ad9d;
}
ul.block-links li a:active {
  background: #807c67;
}
ul.block-links li a i {
  font-size: 60px;
}
ul.block-links li a span {
  margin-top: 10px;
  display: block;
  font-size: 18px;
}
.home-hero-items {
  position: relative;
  top: -140px;
  margin-bottom: -100px;
  width: 66%;
  float: right;
  z-index: 50;
}
.home-hero-items ul.block-links {
  float: right;
  width: 100%;
}
.plain-link h3 {
  color: #ffffff;
  line-height: 110%;
  margin: 0 0 10px;
  font-size: 30px;
}
.plain-link a {
  color: #ffffff;
}
.plain-link a:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.plain-link a:active {
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
}
.home-intro-lr .left {
  float: left;
  width: 50%;
}
.home-intro-lr .right {
  width: 50%;
  float: right;
  text-align: right;
  padding-left: 6%;
  padding-top: 40px;
}
.home-intro-lr h2 {
  color: #0097d9;
  margin-top: 0;
}
.home-intro-lr p a {
  margin-right: 15px;
}
/***********************
    File Date Style
**************************/
.file-date-style span.date,
.recent-announcements ul li span.date,
ul.files li span.date {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: #5b5b5b;
  margin: 0 0 4px;
}
.file-date-style a,
.recent-announcements ul li a,
ul.files li a {
  color: #000000;
  border-bottom: 1px solid transparent;
}
.file-date-style a i,
.recent-announcements ul li a i,
ul.files li a i {
  font-size: 12px;
  color: #0097d9;
  margin-left: 3px;
}
.file-date-style a:hover,
.recent-announcements ul li a:hover,
ul.files li a:hover {
  border-bottom-color: #0db5ff;
}
.file-date-style a:hover i,
.recent-announcements ul li a:hover i,
ul.files li a:hover i {
  color: #0db5ff;
}
.file-date-style a:active,
.recent-announcements ul li a:active,
ul.files li a:active {
  border-bottom-color: #a7a399;
}
.file-date-style a:active i,
.recent-announcements ul li a:active i,
ul.files li a:active i {
  color: #a7a399;
}
/**********************
    Title Link Style
*********************/
.title-link-style,
.file-block-style h3,
.upcoming-reports h3,
.file-block h3,
.recent-announcements h3 {
  font-size: 25px;
  margin: 0 0 10px;
}
.title-link-style a,
.file-block-style h3 a,
.upcoming-reports h3 a,
.file-block h3 a,
.recent-announcements h3 a {
  color: #000000;
}
.title-link-style a i,
.file-block-style h3 a i,
.upcoming-reports h3 a i,
.file-block h3 a i,
.recent-announcements h3 a i {
  color: #0097d9;
  font-size: 15px;
  position: relative;
  top: -2px;
}
.title-link-style a:hover i,
.file-block-style h3 a:hover i,
.upcoming-reports h3 a:hover i,
.file-block h3 a:hover i,
.recent-announcements h3 a:hover i {
  color: #0db5ff;
}
.title-link-style a:active i,
.file-block-style h3 a:active i,
.upcoming-reports h3 a:active i,
.file-block h3 a:active i,
.recent-announcements h3 a:active i {
  color: #a7a399;
}
/***********************
    File Block
**************************/
.file-block-style,
.file-block,
.recent-announcements {
  border-bottom: 9px solid #0097d9;
  margin: 0 0 40px;
}
/***********************
    Recent Announcements
**************************/
.recent-announcements ul {
  font-size: 0;
}
.recent-announcements ul li {
  vertical-align: top;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  padding: 25px 10% 30px 0;
  width: 25%;
  height: 140px;
}
.recent-announcements ul li:hover {
  border-bottom-color: #0db5ff;
}
.recent-announcements ul li:active {
  border-bottom-color: #0074a6;
}
/***********************
    Files List
**************************/
ul.files li {
  margin: 0 0 20px;
}
/***********************
    Home Image Blocks
**************************/
ul.home-image-blocks {
  font-size: 0;
}
ul.home-image-blocks li {
  vertical-align: top;
  position: relative;
  width: 50%;
}
ul.home-image-blocks li img {
  width: 100%;
  display: block;
}
ul.home-image-blocks li .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
ul.home-image-blocks li .overlay .table {
  position: absolute;
  display: table;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
}
ul.home-image-blocks li .overlay .table .cell {
  display: table-cell;
  vertical-align: bottom;
  padding: 30px 40px;
}
ul.home-image-blocks li .overlay .table .cell .cell-inner {
  width: 100%;
}
ul.home-image-blocks li h3 {
  color: #ffffff;
  font-size: 20px;
  margin: 0;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
ul.home-image-blocks li .hidden {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
ul.home-image-blocks li a {
  margin-top: 15px;
}
ul.home-image-blocks li:hover .overlay {
  background: rgba(0, 0, 0, 0.8);
}
ul.home-image-blocks li:hover h3 {
  font-size: 40px;
  text-shadow: none;
  line-height: 100%;
}
ul.home-image-blocks li:hover .hidden {
  max-height: 100px;
}
/*************************
    Home Project Highlight
***************************/
.home-project-highlight {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.home-project-highlight .cell {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
}
.home-project-highlight .cell .cell-inner {
  width: 100%;
}
.home-project-highlight .text {
  padding-right: 7%;
}
.home-project-highlight .text h3 {
  font-size: 35px;
  margin: 0 0 10px;
}
.home-project-highlight .text p {
  color: #000000;
}
.home-project-highlight .image img {
  max-width: 100%;
}
.home-project-highlight .list-map .left {
  float: left;
  width: 50%;
  padding-right: 20px;
}
.home-project-highlight .list-map .right {
  float: left;
  width: 50%;
}
.home-project-highlight .list-map .right img.map {
  display: block;
  max-width: 100%;
}
/*************************
    Icon List
***************************/
.icon-list {
  margin: 0 0 25px;
}
.icon-list li {
  font-size: 16px;
  position: relative;
  padding-left: 40px;
  color: #000000;
  line-height: 120%;
  margin: 0 0 20px;
}
.icon-list li i {
  position: absolute;
  top: -2px;
  left: 0;
  font-size: 25px;
  color: #000000;
}
/*************************
    Home Coloured Block
***************************/
.home-coloured-block {
  background: #0097d9;
  position: relative;
}
.home-coloured-block .main-text {
  max-width: 25%;
  width: 100%;
}
.home-coloured-block .main-text .table {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.home-coloured-block .main-text .table .cell {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  padding: 40px 0;
  height: 370px;
}
.home-coloured-block .main-text .table .cell .cell-inner {
  width: 100%;
}
.home-coloured-block .main-text h2 {
  color: #ffffff;
  font-size: 35px;
  margin: 0 0 15px;
}
.home-coloured-block .main-text p {
  color: #ffffff;
}
.home-coloured-block .main-text p:last-child {
  margin: 0;
}
.home-coloured-block .main-text p a {
  color: #ffffff;
}
.home-coloured-block .main-text p a:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.home-coloured-block .main-text p a:active {
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
}
.home-coloured-block .coloured-blocks {
  width: 62.5%;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
.home-coloured-block .coloured-blocks ul {
  height: 100%;
  font-size: 0;
}
.home-coloured-block .coloured-blocks ul li {
  width: 20%;
  max-width: 300px;
  height: 100%;
  text-align: center;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.home-coloured-block .coloured-blocks ul li:nth-child(1) {
  background: #3f5657;
  /*&:hover {
                                background: lighten(@colour,10%);
                            }
                            &:active {
                                background: darken(@colour,10%);
                            }*/
}
.home-coloured-block .coloured-blocks ul li:nth-child(2) {
  background: #83847a;
  /*&:hover {
                                background: lighten(@colour,10%);
                            }
                            &:active {
                                background: darken(@colour,10%);
                            }*/
}
.home-coloured-block .coloured-blocks ul li:nth-child(3) {
  background: #008343;
  /*&:hover {
                                background: lighten(@colour,10%);
                            }
                            &:active {
                                background: darken(@colour,10%);
                            }*/
}
.home-coloured-block .coloured-blocks ul li:nth-child(4) {
  background: #008ac6;
  /*&:hover {
                                background: lighten(@colour,10%);
                            }
                            &:active {
                                background: darken(@colour,10%);
                            }*/
}
.home-coloured-block .coloured-blocks ul li:nth-child(5) {
  background: #232323;
  /*&:hover {
                                background: lighten(@colour,10%);
                            }
                            &:active {
                                background: darken(@colour,10%);
                            }*/
}
.home-coloured-block .coloured-blocks ul li div.table {
  display: table;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.home-coloured-block .coloured-blocks ul li div.table .cell {
  display: table-cell;
  vertical-align: middle;
}
.home-coloured-block .coloured-blocks ul li div.table .cell .cell-inner {
  width: 100%;
}
.home-coloured-block .coloured-blocks ul li i {
  font-size: 75px;
}
.home-coloured-block .coloured-blocks ul li span {
  margin-top: 18%;
  display: block;
  font-size: 18px;
  font-weight: 700;
}
.home-coloured-block .coloured-blocks ul li a {
  display: block;
  text-align: center;
  color: #ffffff;
  height: 100%;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
/*************************
    Home Slideshow
***************************/
.home-slideshow {
  position: relative;
}
.home-slideshow ul.bxslider li {
  width: 100%;
  height: 600px;
  background-image: url('../images/hero_banner.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.home-slideshow ul.bxslider li .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 25px;
}
.home-slideshow ul.bxslider li .caption .plain-link {
  width: 33%;
  padding-right: 8%;
}
.home-slideshow .controls a {
  display: block;
  line-height: 50px;
  width: 50px;
  text-align: center;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  color: #ffffff;
  font-size: 40px;
  z-index: 10001;
}
.home-slideshow .controls a.slide-prev {
  left: 0;
}
.home-slideshow .controls a.slide-next {
  right: 0;
}
/*************************
    Calendar
***************************/
.month-item,
.calendar .month li,
.upcoming-reports ul li a,
.upcoming-reports ol li {
  padding: 20px 20px 10px;
  height: 90px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.month-item a,
.calendar .month li a,
.upcoming-reports ul li a a,
.upcoming-reports ol li a {
  display: block;
  color: #ffffff;
}
.month-item .date,
.calendar .month li .date,
.upcoming-reports ul li a .date,
.upcoming-reports ol li .date {
  text-transform: uppercase;
  font-size: 12px;
  display: block;
  margin: 0 0 3px;
  color: #ffffff;
}
.month-item h4,
.calendar .month li h4,
.upcoming-reports ul li a h4,
.upcoming-reports ol li h4 {
  margin: 0;
  font-size: 18px;
  color: #ffffff;
  line-height: 120%;
}
.calendar .year {
  display: table;
  table-layout: fixed;
  width: 100%;
  border-top: 2px solid #E2E1DC;
}
.calendar .year:first-child {
  border-top: none;
}
.calendar .year .cell {
  display: table-cell;
  vertical-align: top;
  text-align: left;
}
.calendar .year .title {
  width: 100px;
  padding: 20px 20px 20px 0;
}
.calendar .year .title h3 {
  margin: 0;
  font-size: 18px;
}
.calendar .year .months {
  padding: 20px 0 6px;
}
.calendar .month {
  margin: 0 0 13px;
  font-size: 0;
}
.calendar .month li {
  vertical-align: top;
  width: 49.88%;
  width: calc((100% - 2px) / 2);
  margin-right: 0.24%;
  margin-right: calc(2px);
  margin-bottom: 0.24%;
  margin-bottom: calc(2px);
}
.calendar .month li:nth-child(even) {
  margin-right: 0;
}
.calendar .month.colour_1 li {
  background: #3f5657;
}
.calendar .month.colour_1 li:hover {
  background: #547375;
}
.calendar .month.colour_1 li:active {
  background: #2a3939;
}
.calendar .month.colour_2 li {
  background: #83847a;
}
.calendar .month.colour_2 li:hover {
  background: #9c9d94;
}
.calendar .month.colour_2 li:active {
  background: #696962;
}
.calendar .month.colour_3 li {
  background: #008343;
}
.calendar .month.colour_3 li:hover {
  background: #00b65d;
}
.calendar .month.colour_3 li:active {
  background: #005029;
}
.calendar .month.colour_4 li {
  background: #008ac6;
}
.calendar .month.colour_4 li:hover {
  background: #00aef9;
}
.calendar .month.colour_4 li:active {
  background: #006693;
}
.calendar .month.colour_5 li {
  background: #232323;
}
.calendar .month.colour_5 li:hover {
  background: #3d3d3d;
}
.calendar .month.colour_5 li:active {
  background: #0a0a0a;
}
/**********************
    Reports Colours
**********************/
.upcoming-reports ol li.colour_1 {
  background: #3f5657;
}
.upcoming-reports ol li.colour_1:hover {
  background: #547375;
}
.upcoming-reports ol li.colour_1:active {
  background: #2a3939;
}
.upcoming-reports ol li.colour_2 {
  background: #83847a;
}
.upcoming-reports ol li.colour_2:hover {
  background: #9c9d94;
}
.upcoming-reports ol li.colour_2:active {
  background: #696962;
}
.upcoming-reports ol li.colour_3 {
  background: #008343;
}
.upcoming-reports ol li.colour_3:hover {
  background: #00b65d;
}
.upcoming-reports ol li.colour_3:active {
  background: #005029;
}
.upcoming-reports ol li.colour_4 {
  background: #008ac6;
}
.upcoming-reports ol li.colour_4:hover {
  background: #00aef9;
}
.upcoming-reports ol li.colour_4:active {
  background: #006693;
}
.upcoming-reports ol li.colour_5 {
  background: #232323;
}
.upcoming-reports ol li.colour_5:hover {
  background: #3d3d3d;
}
.upcoming-reports ol li.colour_5:active {
  background: #0a0a0a;
}
/**************************
    Announcements Table
*************************/
.announcements-table-js table td {
  padding: 0;
}
.announcements-table-js table td.dateColumn {
  vertical-align: top;
  font-weight: 700;
  padding: 15px 12px;
}
.announcements-table-js table td.timeColumn {
  width: 100px;
}
.announcements-table-js table table {
  margin: 0;
}
.announcements-table-js table table td {
  border-bottom: none;
  padding: 15px 12px;
}
/**************************
    Files List
*************************/
.files-list ul.files li {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.files-list ul.files li:last-child .cell {
  border-bottom: none;
}
.files-list ul.files li .cell {
  display: table-cell;
  padding: 20px 0;
  vertical-align: middle;
  border-bottom: 2px solid #E2E1DC;
  padding-right: 20px;
}
.files-list ul.files li .cell.date {
  width: 25%;
  min-width: 150px;
}
.files-list ul.files li .date {
  text-transform: uppercase;
  font-size: 12px;
  color: #5b5b5b;
}
.files-list ul.files li .title a {
  color: #000000;
  border-bottom: 1px solid transparent;
  display: inline;
  line-height: 120%;
}
.files-list ul.files li .title a i {
  font-size: 12px;
  color: #0097d9;
}
.files-list ul.files li .title a:hover {
  border-bottom-color: #0097d9;
}
.files-list ul.files li .title a:active {
  color: #a7a399;
}
.files-list ul.files li .title a:active i {
  color: #a7a399;
}
/**************************
    Pagination
*************************/
.pagination {
  border-top: 8px solid #0097d9;
  padding: 30px 0;
}
.pagination ul.pages {
  font-size: 0;
}
.pagination ul.pages li {
  font-size: 18px;
  vertical-align: top;
  margin-right: 8px;
}
.pagination ul.pages li a {
  display: block;
  padding: 0 4px;
}
.pagination ul.pages li a.invisible {
  display: none;
}
/*************************
    Upcoming Reports
***************************/
.upcoming-reports ul li {
  margin: 0 0 2px;
}
/*************************
    Operations List
***************************/
.operations-list .operation {
  width: 100%;
  margin: 0 0 25px;
}
.operations-list .operation .table {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.operations-list .operation .table .cell {
  display: table-cell;
  width: 50%;
  min-height: 330px;
}
.operations-list .operation .text {
  background: #0097d9;
  padding: 35px;
}
.operations-list .operation .text .text-inner {
  min-height: 260px;
}
.operations-list .operation .text h2 {
  font-size: 20px;
  margin: 0 0 20px;
}
.operations-list .operation .text h2 i {
  margin-left: 15px;
}
.operations-list .operation .text h2 a {
  color: #ffffff;
}
.operations-list .operation .text h2 a:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.operations-list .operation .text h2 a:active {
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
}
.operations-list .operation .text p {
  color: #ffffff;
}
.operations-list .operation .text img.map {
  display: block;
  max-width: 150px;
}
.operations-list .operation .image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
/*************************
    Investor Centre Search
***************************/
.investor-centre-search {
  padding-bottom: 17px;
  border-bottom: 4px solid #E0E0E0;
  margin: 0 0 15px;
}
.investor-centre-search form .control-group {
  margin-bottom: 10px;
}
.investor-centre-search form .control-group select {
  width: 100%!important;
  height: 52px!important;
}
.investor-centre-search form .control-group input[type=text],
.investor-centre-search form .control-group .customSelect {
  font-size: 17px;
}
.investor-centre-search form .form-submit {
  margin-top: 20px;
  font-size: 20px;
  padding: 16px 20px;
}
.investor-centre-search form .form-submit i {
  font-size: 16px;
}
.investor-centre-search form .form-submit:after {
  display: none;
  content: "";
}
/*************************
    Presentation Reports
***************************/
.presentations-reports .col {
  float: left;
  width: 47%;
  width: calc((100% - 55px) / 2);
  margin-right: 9%;
  margin-right: calc(55px);
}
.presentations-reports .col:nth-child(even) {
  margin-right: 0;
}
.presentations-reports .files li {
  height: 70px;
}
/*************************
    Upcoming Reports
***************************/
.upcoming-reports {
  margin: 30px 0;
}
.upcoming-reports h3 {
  margin: 0 0 25px;
}
.upcoming-reports ol li {
  margin-bottom: 2px;
}
/************************
    Home Share Price
************************/
.home-share-price-button-block {
  text-align: left;
  width: 100%;
  max-width: 650px;
}
.share-price-box {
  border-bottom: 2px solid #0097d9;
  padding-bottom: 13px;
  margin: 0 0 7px;
}
.share-price-box .price-block {
  color: #0097d9;
  font-size: 0;
  text-transform: uppercase;
}
.share-price-box .price-block .l,
.share-price-box .price-block .r {
  vertical-align: top;
}
.share-price-box .price-block .l {
  margin-right: 15px;
}
.share-price-box .price-block .r {
  padding-top: 2px;
}
.share-price-box .price-block .price {
  font-size: 70px;
  line-height: 85%;
}
.share-price-box .price-block .currency {
  display: block;
  font-size: 20px;
  font-weight: 700;
}
.share-price-box .price-block .timestamp {
  display: block;
  max-width: 295px;
  font-size: 13px;
}
/************************
    Sidebar Promo
************************/
.sidebar-promo {
  margin: 30px 0;
  max-width: 350px;
}
.sidebar-promo a {
  display: block;
  font-size: 20px;
  color: #ffffff;
}
.sidebar-promo a .cell {
  background-color: #3f5657;
}
.sidebar-promo a:hover .cell {
  background-color: #547375;
}
.sidebar-promo a:active .cell {
  background-color: #2a3939;
}
.sidebar-promo .table {
  display: table;
  width: 100%;
}
.sidebar-promo .table .cell {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  height: 95px;
  padding: 30px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.sidebar-promo span {
  line-height: 120%;
}
.sidebar-promo img {
  display: block;
  max-width: 100%;
}
/************************
    Project Enquiries
************************/
.project-enquiry-details ul {
  margin: 0 0 30px;
  display: table;
}
.project-enquiry-details ul li {
  margin: 0 0 4px;
  display: table-row;
}
.project-enquiry-details ul span {
  display: table-cell;
  padding: 3px 0;
  line-height: 120%;
  vertical-align: top;
}
.project-enquiry-details ul span.th {
  font-weight: 700;
  padding-right: 5px;
}
.project-enquiry-details li,
.project-enquiry-details p {
  font-size: 16px;
}
/************************
    Project Enquiries
************************/
.sub-projects-list h2 {
  margin: 0 0 5px;
}
.sub-projects-list h2 a {
  display: block;
  color: #ffffff;
  font-size: 20px;
  padding: 35px 30px;
  background: #0097d9;
}
.sub-projects-list h2 a:hover {
  background: #0db5ff;
}
.sub-projects-list h2 a:active {
  background: #a7a399;
}
.sub-projects-list h2 a i {
  margin-left: 15px;
  font-size: 16px;
}
/************************
    Subscribe Form
************************/
.subscribe-form {
  padding: 60px;
}
.subscribe-form form .form-submit {
  margin-top: 40px;
}
.subscribe-form .hidden {
  display: none;
}
/************************
    Operation Page Title
************************/
.operation-page-title .text-area {
  max-width: 63%;
  float: left;
}
.operation-page-title .map-image {
  float: right;
  display: block;
  max-width: 100%;
  margin-right: 5%;
}
/************************
    Back to Top
************************/
#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 30px;
  color: rgba(0, 0, 0, 0.4);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  z-index: 100;
  display: block;
  visibility: hidden;
}
#back-to-top.show {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
#back-to-top i:before {
  position: relative;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
#back-to-top:hover {
  color: #000000;
}
#back-to-top:active {
  color: #0097d9;
}
/**********************
    General Styles
***********************/
/* CSS Document */
/*********************
    Body
**********************/
/***********
    Sticky
************/
html,
body {
  min-height: 100%;
}
body {
  overflow-x: hidden;
}
/*********************
    Header
**********************/
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
header .inner {
  position: relative;
}
header .nav-left,
header .nav-right {
  height: 130px;
  width: 50%;
  float: left;
}
header #logo img {
  width: 184px;
  height: 42px;
}
header .nav-left {
  background-color: #ffffff;
  position: relative;
  padding: 30px 35px 30px 50px;
}
header .nav-left #logo,
header .nav-left .left-box,
header .nav-left .search-box {
  vertical-align: middle;
}
header .nav-left .left-box {
  border-left: 1px solid #E8E8E8;
  margin-left: 20px;
}
header .nav-left .left-box .table {
  display: table;
  width: 100%;
  height: 100%;
}
header .nav-left .left-box .table .cell {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  height: 76px;
  padding: 0 20px;
}
header .nav-left .left-box a.left-menu-link {
  line-height: 135%;
  font-size: 14px;
  width: 240px;
  display: inline-block;
  position: relative;
  padding-right: 23px;
}
header .nav-left .left-box a.left-menu-link i {
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 20px;
  margin-top: -10px;
}
header .nav-left .search-box {
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -23px;
}
header .nav-left .search-box .search-trigger {
  font-size: 40px;
}
header .nav-left .search-box form {
  display: block;
  position: absolute;
  right: 60px;
  top: -4px;
  width: 0;
  overflow: hidden;
}
header .nav-left .search-box form input {
  display: none;
}
header .nav-left .search-box form input#search {
  display: block;
  border: 1px solid #cacaca;
  padding: 15px 25px;
  -webkit-box-shadow: -2px 4px 5px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: -2px 4px 5px 0px rgba(0, 0, 0, 0.07);
  box-shadow: -2px 4px 5px 0px rgba(0, 0, 0, 0.07);
  width: 100%;
  font-size: 21px;
  outline: none;
}
header .nav-left .search-box form input#search:focus {
  outline: none;
  border-color: #0097d9;
}
header .nav-right {
  background-color: #0097d9;
  padding-top: 30px;
  padding-right: 40px;
  text-align: right;
}
header .nav-right .main-menu-trigger {
  font-size: 25px;
  color: #ffffff;
  display: none;
}
header .nav-right nav > ul {
  font-size: 0;
}
header .nav-right nav > ul > li {
  vertical-align: top;
  margin-left: 20px;
}
header .nav-right nav.nav-top {
  margin: 0 0 15px;
}
header .nav-right nav.nav-top ul li {
  font-size: 18px;
}
header .nav-right nav.nav-top ul li a {
  color: #A1DFFF;
}
header .nav-right nav.nav-top ul li a:hover {
  color: #d4f0ff;
}
header .nav-right nav.nav-top ul li a:active {
  color: #ffffff;
}
header .nav-right nav.nav-main > ul > li {
  font-size: 21px;
  position: relative;
  padding-bottom: 20px;
}
header .nav-right nav.nav-main > ul > li > a {
  color: #ffffff;
  position: relative;
  display: block;
}
header .nav-right nav.nav-main > ul > li > a:after {
  content: "";
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  position: absolute;
  left: 50%;
  top: 35px;
  background: #ffffff;
  margin-left: -3px;
  margin-left: -2.5px;
}
header .nav-right nav.nav-main > ul > li:hover > a {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
header .nav-right nav.nav-main > ul > li:hover > ul,
header .nav-right nav.nav-main > ul > li:hover > div {
  display: block!important;
}
header .nav-right nav.nav-main > ul > li > ul,
header .nav-right nav.nav-main > ul > li > div {
  display: none;
  position: absolute;
  top: 20px;
  left: 50%;
  text-align: left;
}
header .nav-right nav.nav-main > ul > li > ul:before,
header .nav-right nav.nav-main > ul > li > div:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 5px;
  border-bottom: 10px solid #ffffff;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  left: 50%;
  margin-left: -7px;
}
header .nav-right nav.nav-main > ul > li > ul {
  width: 260px;
  margin-left: -130px;
  padding: 15px 0 0;
}
header .nav-right nav.nav-main > ul > li > ul > li {
  background: #ffffff;
  padding: 0 20px;
  font-size: 17px;
}
header .nav-right nav.nav-main > ul > li > ul > li:first-child {
  padding-top: 10px;
}
header .nav-right nav.nav-main > ul > li > ul > li:last-child {
  padding-bottom: 10px;
}
header .nav-right nav.nav-main > ul > li > ul > li > ul {
  padding: 10px 0 10px 15px;
}
header .nav-right nav.nav-main > ul > li > ul > li > ul li {
  font-size: 14px;
}
header .nav-right nav.nav-main > ul > li > ul > li > ul li a {
  color: #5b5b5b;
}
header .nav-right nav.nav-main > ul > li > ul > li > ul li a:hover {
  color: #0097d9;
}
header .nav-right nav.nav-main > ul > li > ul > li > ul li a:active {
  color: #a7a399;
}
header .nav-right nav.nav-main > ul > li > div.large-dropdown {
  display: none;
  width: 820px;
  margin-left: -410px;
  padding-top: 15px;
}
header .nav-right nav.nav-main > ul > li > div.large-dropdown .dropdown-inner {
  background: #ffffff;
  overflow: hidden;
  padding: 30px 40px 40px;
}
header .nav-right nav.nav-main > ul > li > div.large-dropdown .left {
  float: left;
  width: 220px;
  margin-right: 65px;
}
header .nav-right nav.nav-main > ul > li > div.large-dropdown .right {
  overflow: hidden;
  display: block;
}
header .nav-right nav.nav-main > ul > li > div.large-dropdown .projects .project {
  margin: 0 0 25px;
  padding-right: 30px;
}
header .nav-right nav.nav-main > ul > li > div.large-dropdown .projects .project:last-child {
  margin: 0;
}
header .nav-right nav.nav-main > ul > li > div.large-dropdown .projects .project h3 {
  margin: 0 0 10px;
}
header .nav-right nav.nav-main > ul > li > div.large-dropdown .projects .project > ul {
  font-size: 0;
}
header .nav-right nav.nav-main > ul > li > div.large-dropdown .projects .project > ul .sub-project {
  vertical-align: top;
  width: 50%;
}
header .nav-right nav.nav-main > ul > li > div.large-dropdown .projects .project > ul .sub-project a {
  color: #5b5b5b;
  display: block;
  padding: 5px 0;
}
header .nav-right nav.nav-main > ul > li > div.large-dropdown .projects .project > ul .sub-project a:hover {
  color: #0097d9;
}
header .nav-right nav.nav-main > ul > li > div.large-dropdown .projects .project > ul .sub-project a:active {
  color: #a7a399;
}
header .nav-right nav.nav-main > ul > li > div.large-dropdown .projects .project > ul .sub-project h4,
header .nav-right nav.nav-main > ul > li > div.large-dropdown .projects .project > ul .sub-project ul li {
  font-size: 15px;
}
header .nav-right nav.nav-main > ul > li > div.large-dropdown .projects .project > ul .sub-project h4 {
  font-size: 15px;
  margin: 0;
  font-weight: 700;
}
header .nav-right nav.nav-main > ul > li > div.large-dropdown .projects .project > ul .sub-project ul {
  padding-left: 10px;
}
header .nav-right nav.nav-main > ul > li.current-menu-item > a:after,
header .nav-right nav.nav-main > ul > li > a:active:after,
header .nav-right nav.nav-main > ul > li.current_page_ancestor > a:after,
header .nav-right nav.nav-main > ul > li.current-page-ancestor > a:after {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
/*********************
    Footer
**********************/
footer {
  color: #ffffff;
}
footer p {
  color: #ffffff;
}
footer .btn,
footer form .form-submit {
  padding: 15px 35px;
  font-size: 18px;
  font-weight: 700;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #4C4C4C;
}
footer .btn:hover,
footer form .form-submit:hover {
  background: #666666;
}
footer .btn:active,
footer form .form-submit:active {
  background: #333333;
}
footer a {
  color: #ffffff;
}
footer a:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
  color: #ffffff;
}
footer a:active {
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
  color: #ffffff;
}
footer .left {
  float: left;
}
footer .right {
  float: right;
  text-align: right;
}
footer .footer-top {
  padding-top: 60px;
  padding-bottom: 40px;
  background-color: #4e4e4e;
  text-align: center;
}
footer .footer-top .btn,
footer .footer-top form .form-submit {
  background: #575757;
}
footer .footer-top .btn:hover,
footer .footer-top form .form-submit:hover {
  background: #717171;
}
footer .footer-top .btn:active,
footer .footer-top form .form-submit:active {
  background: #3e3e3e;
}
footer .footer-bottom {
  background-color: #454545;
}
footer .footer-bottom--top {
  padding: 40px 0;
  border-bottom: 1px solid #505050;
}
footer .footer-bottom--top .btn,
footer .footer-bottom--top form .form-submit {
  vertical-align: middle;
}
footer .footer-bottom--top .right {
  padding-top: 10px;
}
footer .footer-bottom--bottom {
  padding: 25px 0;
}
footer .footer-bottom--bottom .right {
  padding-top: 8px;
}
footer .footer-bottom--bottom .right p {
  font-size: 13px;
  margin: 0 0 8px;
}
footer .footer-bottom--bottom .right ul {
  font-size: 0;
}
footer .footer-bottom--bottom .right ul li {
  vertical-align: top;
  font-size: 13px;
  margin-left: 10px;
}
footer .footer-newsletter p {
  font-size: 22px;
  margin: 0 0 18px;
}
footer .footer-phone,
footer .footer-address {
  vertical-align: middle;
  margin-left: 10px;
}
footer .footer-phone {
  font-size: 30px;
}
footer .footer-address p {
  margin: 0;
  font-size: 13px;
}
footer ul.footer-social {
  font-size: 0;
}
footer ul.footer-social li {
  vertical-align: top;
}
footer ul.footer-social li a {
  font-size: 40px;
}
footer ul.footer-social li a:hover {
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
footer ul.footer-social li a:active {
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
}
footer nav.footer-nav ul {
  font-size: 0;
}
footer nav.footer-nav ul li {
  vertical-align: top;
  margin-right: 30px;
  margin-bottom: 10px;
  font-size: 18px;
}
footer nav.footer-nav ul li a {
  display: block;
}
/*********************
    Main
**********************/
/**********************
    Page Styles
***********************/
/*****************
    Pages
*****************/
body.home .recent-announcements {
  padding-top: 35px;
  border-top: 1px solid #EFEFEF;
  margin: 0;
}
/**********************
    Page Styles
***********************/
/* CSS Document */
/*********************
    max-width 1360
**********************/
@media screen and (max-width: 1367px) {
  h1 {
    font-size: 26px;
    margin: 10px 0;
  }
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 21px;
    margin: 35px 0 20px;
  }
  p {
    font-size: 16px;
    margin: 0 0 25px;
  }
  p.intro {
    font-size: 18px;
  }
  ol li,
  ul li {
    font-size: 16px;
  }
  .btn,
  form .form-submit,
  form .form-submit {
    padding: 16px 40px 16px 20px;
    font-size: 17px;
  }
  .wrapper {
    padding: 0 9.8%;
  }
  .block.padded {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .content-cols .main-col {
    width: calc(100% - 300px);
  }
  .content-cols .sidebar {
    width: calc(300px);
  }
  header #logo img {
    width: 140px;
    height: 35px;
  }
  header .nav-left,
  header .nav-right {
    height: 100px;
  }
  header .nav-left {
    padding: 20px 30px 20px 40px;
  }
  header .nav-left .left-box .table .cell {
    height: 56px;
    padding: 0 15px;
  }
  header .nav-left .left-box a.left-menu-link {
    font-size: 11px;
    width: 190px;
  }
  header .nav-left .search-box .search-trigger {
    font-size: 30px;
  }
  header .nav-right {
    padding-top: 20px;
    padding-right: 25px;
  }
  header .nav-right nav.nav-top ul li {
    font-size: 14px;
  }
  header .nav-right nav.nav-main > ul > li {
    font-size: 16px;
  }
  header .nav-right nav.nav-main > ul > li > a:after {
    top: 28px;
  }
  header .nav-right nav.nav-main > ul > li > ul {
    width: 230px;
    margin-left: -115px;
  }
  header .nav-right nav.nav-main > ul > li > ul > li > a {
    font-size: 15px;
  }
  header .nav-right nav.nav-main > ul > li > ul > li > ul li > a {
    font-size: 13px;
  }
  .hero-image {
    height: 380px;
  }
  .sidebar-list > ul > li {
    padding: 15px 0;
    font-size: 17px;
  }
  .related-links {
    margin: 50px 0 -30px;
  }
  .related-links ul li {
    height: 100px;
  }
  .related-links ul li a {
    font-size: 20px;
  }
  .sidebar-promo a {
    font-size: 18px;
  }
  .sidebar-promo .table .cell {
    height: 85px;
    padding: 25px;
  }
  .gform_wrapper form input.text,
  form .control-group input.text,
  .gform_wrapper form input[type=text],
  form .control-group input[type=text],
  .gform_wrapper form input[type=email],
  form .control-group input[type=email],
  .gform_wrapper form input[type=password],
  form .control-group input[type=password],
  .gform_wrapper form input[type=number],
  form .control-group input[type=number],
  .gform_wrapper form input[type=date],
  form .control-group input[type=date],
  .gform_wrapper form textarea,
  form .control-group textarea,
  .gform_wrapper form .customSelect,
  form .control-group .customSelect {
    font-size: 18px;
  }
  .title-area h2 {
    font-size: 27px;
  }
  .title-area .right-image {
    right: 10%;
    bottom: -30px;
    width: calc(290px);
  }
  /*************************
        Home Styles
    **************************/
  .home-slideshow ul.bxslider li {
    height: 450px;
  }
  .plain-link {
    font-size: 16px;
  }
  .plain-link h3 {
    font-size: 22px;
    margin: 0 0 5px;
  }
  .home-hero-items {
    top: -105px;
    margin-bottom: -65px;
  }
  ul.block-links li a {
    height: 105px;
    padding: 20px 10px;
  }
  ul.block-links li a i {
    font-size: 46px;
  }
  ul.block-links li a span {
    margin-top: 6px;
    font-size: 15px;
  }
  .share-price-box .price-block .price {
    font-size: 57px;
  }
  .share-price-box .price-block .currency {
    font-size: 16px;
  }
  .share-price-box .price-block .time-stamp {
    font-size: 11px;
  }
  .recent-announcements ul li {
    padding-right: 20px;
    font-size: 16px;
    height: 130px;
  }
  .home .recent-announcements ul li {
    padding-right: 10%;
  }
  ul.home-image-blocks li:hover h3 {
    font-size: 32px;
  }
  .home-project-highlight .text h3 {
    font-size: 27px;
  }
  /***************************
        Other
    *************/
  .team-member-title {
    min-height: 220px;
    padding-top: 30px;
  }
}
/*********************
    max-width 1280
**********************/
@media screen and (max-width: 1280px) {
  /*  header {

        #logo {
            img {
                width: 144px;
            }
        }

        .nav-left {
            padding: 30px 35px 30px 30px;
        }
        .nav-right {
            nav.nav-top {
                ul {
                    li {
                        font-size: 16px;
                    }
                }
            }
            nav.nav-main {
                >ul {
                    >li {
                        font-size: 18px;

                        div.large-dropdown {
                            width: 630px;
                            margin-left: -315px;
                            .dropdown-inner {
                                padding: 30px 30px 40px;
                            }

                            .projects {
                                .project {
                                    >ul {
                                        .sub-project {
                                            width: 100%;
                                            margin-bottom: 20px;
                                            &:last-child {
                                                margin-bottom: 0;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }*/
  .calendar .month li {
    width: 100%;
  }
  .presentations-reports .col {
    width: 100%;
    float: none;
    margin-bottom: 30px;
  }
  .presentations-reports ul.files li {
    height: auto;
  }
}
/*********************
    max-width 1200
**********************/
@media screen and (max-width: 1220px) {
  .wrapper {
    padding: 0 40px;
  }
  /*header {
        .nav-left {
            .left-box {
                a.left-menu-link {
                    width: 190px;
                }
            }
        }
    }*/
}
/*********************
    max-width 1130
**********************/
@media screen and (max-width: 1130px) {
  /* header {

        #logo {
            img {
                width: 125px;
            }
        }

        .nav-left {
            padding: 20px;

            .search-box {
                right: 20px;
            }

            .left-box {
                margin-left: 10px;
                //padding: 20px 10px;
            }
        }

        .nav-left, .nav-right {
            height: 116px;
        }

        .nav-right {
            padding-right: 25px;

            nav {
                >ul {
                    >li {
                        margin-left: 15px;
                    }
                }
            }

            nav.nav-main {
                >ul {
                    >li {
                        font-size: 18px;
                    }
                }
            }
        }
    }*/
  .home-project-highlight .list-map .left,
  .home-project-highlight .list-map .right {
    width: 100%;
    float: none;
  }
  .home-project-highlight .list-map .right img.map {
    max-width: 50%;
  }
  .home-coloured-block .main-text {
    max-width: 100%;
  }
  .home-coloured-block .main-text .table .cell {
    height: auto;
  }
  .home-coloured-block .coloured-blocks {
    width: 100%;
    position: relative;
    height: 290px;
  }
  .recent-announcements ul li {
    width: 50%;
  }
  .home .recent-announcements ul li {
    width: 25%;
  }
  .related-links ul li a {
    font-size: 22px;
  }
}
/*********************
    max-width 1023
**********************/
@media screen and (max-width: 1023px) {
  header #logo img {
    width: 110px;
    height: 25px;
  }
  header .nav-left,
  header .nav-right {
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  header .nav-left {
    width: calc(100% - 75px);
  }
  header .nav-left .left-box {
    display: none;
  }
  header .nav-left .search-box {
    margin-top: -17px;
  }
  header .nav-left .search-box .search-trigger {
    font-size: 25px;
  }
  header .nav-left .search-box form input#search {
    padding: 9px 25px;
    font-size: 16px;
  }
  header .nav-right {
    width: 75px;
    text-align: center;
    padding-right: 5px;
    padding-left: 5px;
  }
  header .nav-right .main-menu-trigger {
    display: inline-block;
  }
  header .nav-right .navs {
    display: none;
    text-align: left;
    width: 100%;
    position: absolute;
    top: 59px;
    left: 0;
    background: #0097d9;
    padding: 20px 25px;
  }
  header .nav-right .navs nav > ul > li {
    display: block;
    margin: 0;
  }
  header .nav-right .navs nav.nav-top {
    margin: 0 0 15px;
  }
  header .nav-right .navs nav.nav-top > ul li {
    font-size: 16px;
    margin: 0 0 5px;
  }
  header .nav-right .navs nav.nav-top > ul li a {
    display: block;
    position: relative;
    padding-right: 20px;
  }
  header .nav-right .navs nav.nav-top > ul li a i {
    position: absolute;
    right: 0;
    top: 50%;
    line-height: 16px;
    margin-top: -8px;
  }
  header .nav-right .navs nav.nav-main > ul > li {
    border-top: 2px solid #ffffff;
    padding: 18px 0;
  }
  header .nav-right .navs nav.nav-main > ul > li > a {
    display: block;
    font-size: 21px;
  }
  header .nav-right .navs nav.nav-main > ul > li > a:after {
    content: '\e80d';
    font-family: "senex";
    font-size: 20px;
    line-height: 20px;
    width: 25px;
    text-align: right;
    color: #ffffff;
    background: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    left: auto;
    right: 0;
    top: 50%;
    margin-top: -10px;
    display: block;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }
  header .nav-right .navs nav.nav-main > ul > li > ul,
  header .nav-right .navs nav.nav-main > ul > li > div {
    display: block!important;
    background: none;
    position: static;
  }
  header .nav-right .navs nav.nav-main > ul > li > ul:before,
  header .nav-right .navs nav.nav-main > ul > li > div:before {
    display: none;
  }
  header .nav-right .navs nav.nav-main > ul > li > div.large-dropdown .left ul li a,
  header .nav-right .navs nav.nav-main > ul > li > div.large-dropdown .projects h3 a,
  header .nav-right .navs nav.nav-main > ul > li > ul > li > a {
    color: #ffffff;
    -webkit-opacity: 0.8;
    -moz-opacity: 0.8;
    opacity: 0.8;
    border: none;
    padding: 7px 20px;
    font-size: 17px;
  }
  header .nav-right .navs nav.nav-main > ul > li > div.large-dropdown .left ul li a:before,
  header .nav-right .navs nav.nav-main > ul > li > div.large-dropdown .projects h3 a:before,
  header .nav-right .navs nav.nav-main > ul > li > ul > li > a:before {
    content: "";
    display: block;
    width: 7px;
    height: 2px;
    background: #ffffff;
    -webkit-opacity: 0.8;
    -moz-opacity: 0.8;
    opacity: 0.8;
    position: absolute;
    left: 0;
    top: 16px;
  }
  header .nav-right .navs nav.nav-main > ul > li > div.large-dropdown .left ul li a:after,
  header .nav-right .navs nav.nav-main > ul > li > div.large-dropdown .projects h3 a:after,
  header .nav-right .navs nav.nav-main > ul > li > ul > li > a:after {
    content: '\e80c';
    color: #ffffff;
    -webkit-opacity: 0.8;
    -moz-opacity: 0.8;
    opacity: 0.8;
  }
  header .nav-right .navs nav.nav-main > ul > li > ul {
    width: 100%;
    margin-left: 0;
    padding: 0;
  }
  header .nav-right .navs nav.nav-main > ul > li > ul > li {
    background: none;
    padding: 0;
  }
  header .nav-right .navs nav.nav-main > ul > li > ul > li > ul {
    display: none;
  }
  header .nav-right .navs nav.nav-main > ul > li > ul > li:first-child {
    padding: 0;
  }
  header .nav-right .navs nav.nav-main > ul > li > ul > li:last-child {
    padding: 0;
  }
  header .nav-right .navs nav.nav-main > ul > li > div.large-dropdown {
    width: 100%;
    margin-left: 0;
  }
  header .nav-right .navs nav.nav-main > ul > li > div.large-dropdown .dropdown-inner {
    background: none;
    padding: 0;
  }
  header .nav-right .navs nav.nav-main > ul > li > div.large-dropdown .left {
    display: block;
    width: 100%;
    margin-right: 0;
    float: none;
  }
  header .nav-right .navs nav.nav-main > ul > li > div.large-dropdown .right {
    overflow: visible;
  }
  header .nav-right .navs nav.nav-main > ul > li > div.large-dropdown .projects .project {
    padding-right: 0;
    margin: 0;
  }
  header .nav-right .navs nav.nav-main > ul > li > div.large-dropdown .projects .project h3 {
    margin: 0;
  }
  header .nav-right .navs nav.nav-main > ul > li > div.large-dropdown .projects .project > ul {
    display: none;
  }
  .content-cols .main-col {
    width: calc(100% - 250px);
    padding-right: 5%;
  }
  .content-cols .sidebar {
    width: calc(250px);
  }
  .sidebar-list > ul > li {
    font-size: 16px;
    padding: 15px 0;
  }
}
/*********************
    max-width 979
**********************/
@media screen and (max-width: 979px) {
  footer .left,
  footer .right {
    float: none;
    text-align: center;
  }
  footer .footer-bottom--top .left {
    margin-bottom: 20px;
  }
  .home .recent-announcements ul li {
    padding-right: 20px;
  }
  .team-list .member {
    margin-right: 0;
    width: 100%;
  }
}
/*********************
    max-width 830
**********************/
@media screen and (max-width: 830px) {
  h2 {
    font-size: 25px;
  }
  .team-member-title {
    width: 100%;
    min-height: 1px;
    padding-top: 0;
  }
  .team-member-title .right-image {
    position: static;
    width: auto;
    max-width: 100%;
    margin-top: 20px;
    margin-bottom: -50px;
  }
}
/*********************
    max-width 800
**********************/
@media screen and (max-width: 800px) {
  /************************
        Operation Page Title
    ************************/
  .operation-page-title .text-area {
    max-width: 100%;
    float: none;
  }
  .operation-page-title .map-image {
    float: none;
    display: block;
    margin-right: 0;
    margin-top: 40px;
  }
}
/*********************
    max-width 790
**********************/
@media screen and (max-width: 790px) {
  footer .footer-address {
    margin-top: 20px;
    margin-left: 0;
  }
}
/*********************
    max-width 767
**********************/
@media screen and (max-width: 767px) {
  .wrapper {
    padding: 0 20px;
  }
  .block.padded {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .block.padded.padding-large {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .equal-cols .col {
    float: none;
    width: 100%;
    padding-right: 0;
  }
  .content-cols .main-col,
  .content-cols .sidebar {
    float: none;
    width: 100%;
  }
  .content-cols .main-col {
    margin-bottom: 30px;
    padding-right: 0;
  }
  .article-body table {
    display: block;
    overflow-x: scroll;
  }
  .article-body table:before,
  .article-body table:after {
    display: block;
    content: "Scroll right to view table...";
    font-size: 12px;
    color: #5b5b5b;
    text-transform: uppercase;
    margin: 10px 0;
  }
  .article-body table:before {
    padding: 0 0 10px;
    border-bottom: 1px solid #cccccc;
  }
  .article-body table tbody {
    width: 1000px;
    display: table;
  }
  footer .footer-bottom--top {
    padding: 40px 0 30px;
  }
  footer .footer-bottom--top .btn,
  footer .footer-bottom--top form .form-submit {
    margin-bottom: 15px;
  }
  footer .footer-nav {
    display: none;
  }
  .home-slideshow ul.bxslider li {
    height: 450px;
  }
  .home-slideshow ul.bxslider li .caption .plain-link {
    width: 100%;
  }
  .home-hero-items {
    top: auto;
    margin-bottom: 0;
    width: 100%;
  }
  .home-hero-items ul.block-links {
    float: none;
    width: 100%;
  }
  .home-intro-lr .left,
  .home-intro-lr .right {
    float: none;
    width: 100%;
    text-align: left;
    padding-left: 0;
  }
  .home-intro-lr .left {
    margin-bottom: 20px;
  }
  .recent-announcements ul li {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .home .recent-announcements ul li {
    padding-top: 25px;
    padding-bottom: 30px;
    width: 50%;
    height: 140px;
  }
  ul.home-image-blocks li {
    width: 100%;
  }
  ul.home-image-blocks li .overlay {
    background: rgba(0, 0, 0, 0.4);
  }
  ul.home-image-blocks li h3 {
    font-size: 40px;
    text-shadow: none;
  }
  ul.home-image-blocks li .hidden {
    max-height: 100px;
  }
  .home-project-highlight {
    display: block;
  }
  .home-project-highlight .cell {
    display: block;
    width: 100%;
  }
  .home-project-highlight .text {
    padding-right: 0;
  }
  .home-coloured-block h2 {
    font-size: 30px;
  }
  .home-coloured-block .coloured-blocks {
    height: auto;
  }
  .home-coloured-block .coloured-blocks ul li {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .home-coloured-block .coloured-blocks ul li div.table {
    position: static;
  }
  .home-coloured-block .coloured-blocks ul li div.table .cell {
    padding: 30px 20px;
  }
  .home-coloured-block .coloured-blocks ul li span {
    margin-top: 20px;
  }
  .related-links {
    margin: 60px 0;
  }
  .related-links ul {
    display: block;
  }
  .related-links ul li {
    display: block;
    height: auto;
    border-right: none;
    padding: 30px 30px 30px 0;
  }
  .related-links ul li:after {
    width: 100%;
  }
  .team-member-title .title-secondary h2 {
    font-size: 22px;
  }
  .team-member-title .right-image {
    margin-bottom: -30px;
  }
  /************************
        Subscribe Form
    ************************/
  .subscribe-form {
    padding: 20px;
  }
  /************************
        Related Information
    ************************/
  .related-links ul li {
    padding: 20px 30px 20px 0;
  }
  .related-links ul li:after {
    height: 5px;
  }
  .related-links ul li a {
    font-size: 18px;
  }
}
/*********************
    max-width 570
**********************/
@media screen and (max-width: 570px) {
  a.btn,
  aform .form-submit {
    font-size: 16px;
    padding: 15px 20px;
  }
  h1 {
    margin: 0 0 20px;
    font-size: 30px;
  }
  .title-area h2 {
    font-size: 20px;
    margin-top: 10px;
  }
  header .nav-left {
    padding: 15px 10px 15px 17px;
  }
  header .nav-left .search-box {
    position: static;
    float: right;
  }
  header .nav-left .search-box .search-trigger {
    margin-top: 15px;
    display: inline-block;
  }
  header .nav-left .search-box form {
    display: none;
    background: #ffffff;
    right: auto;
    top: 59px;
    padding: 0 15px 15px;
    left: 0;
    width: 100%;
  }
  header .nav-left .search-box form input#search {
    padding: 9px 15px;
  }
  .recent-announcements ul li {
    width: 100%;
    height: auto;
  }
  .home .recent-announcements ul li {
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    height: auto;
  }
  .plain-link h3 {
    font-size: 20px;
  }
  .home-slideshow ul.bxslider li {
    height: 330px;
  }
  .hero-image {
    height: 210px;
  }
  ul.block-links li a {
    height: 87px;
    padding: 10px 5px;
  }
  ul.block-links li a span {
    font-size: 12px;
    line-height: 120%;
  }
  ul.block-links li a i {
    font-size: 30px;
  }
  ul.home-image-blocks li .overlay .table .cell {
    padding: 20px;
  }
  ul.home-image-blocks li a {
    margin-top: 10px;
  }
  ul.home-image-blocks li h3 {
    font-size: 25px;
  }
  .calendar .year {
    display: block;
  }
  .calendar .year .cell {
    width: 100%;
    display: block;
  }
  form .form-row .half,
  form .half-fields > ul > li.gfield {
    width: 100%!important;
    margin-right: 0!important;
    margin-bottom: 20px!important;
  }
  form .form-row .half:last-child,
  form .half-fields > ul > li.gfield:last-child,
  form .form-row .half:nth-last-child(2),
  form .half-fields > ul > li.gfield:nth-last-child(2) {
    margin-bottom: 20px!important;
  }
  .gform_wrapper form input.text,
  form .control-group input.text,
  .gform_wrapper form input[type=text],
  form .control-group input[type=text],
  .gform_wrapper form input[type=email],
  form .control-group input[type=email],
  .gform_wrapper form input[type=password],
  form .control-group input[type=password],
  .gform_wrapper form input[type=number],
  form .control-group input[type=number],
  .gform_wrapper form input[type=date],
  form .control-group input[type=date],
  .gform_wrapper form textarea,
  form .control-group textarea,
  .gform_wrapper form .customSelect,
  form .control-group .customSelect {
    font-size: 16px;
  }
  .gform_wrapper form input.text,
  form .control-group input.text,
  .gform_wrapper form input[type=text],
  form .control-group input[type=text],
  .gform_wrapper form input[type=email],
  form .control-group input[type=email],
  .gform_wrapper form input[type=password],
  form .control-group input[type=password],
  .gform_wrapper form input[type=number],
  form .control-group input[type=number],
  .gform_wrapper form input[type=date],
  form .control-group input[type=date],
  .gform_wrapper form textarea,
  form .control-group textarea {
    padding: 15px 20px;
  }
  .gform_wrapper form .customSelect .customSelectInner,
  form .control-group .customSelect .customSelectInner {
    padding: 14px 35px 11px 20px !important;
  }
  .home-project-highlight .text h3 {
    font-size: 25px;
  }
  .share-price-block .price-block .price {
    font-size: 40px;
    font-weight: 700;
  }
  .dual-button a {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 7px;
  }
  /************************
        Project Enquiries
    ************************/
  .project-enquiry-details ul {
    display: block;
  }
  .project-enquiry-details ul li {
    display: block;
    font-size: 15px;
  }
  .project-enquiry-details ul span {
    display: block;
  }
  .home-intro-lr .left p a {
    font-size: 16px;
  }
  .home-intro-lr .left p a i {
    font-size: 12px;
  }
  .home-intro-lr .right {
    padding-top: 0;
  }
  .operations-list .operation .table {
    display: block;
  }
  .operations-list .operation .table .cell {
    display: block;
    width: 100%;
    min-height: 1px;
  }
  .operations-list .operation .table .image {
    height: 180px;
  }
  .post-list .post .image {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }
  .files-list ul.files li {
    display: block;
  }
  .files-list ul.files li .cell {
    display: block;
  }
  .files-list ul.files li .cell.date {
    width: 100%;
    padding-right: 0;
    margin-bottom: 4px;
    border-bottom: none;
    padding-bottom: 0;
  }
  .files-list ul.files li .cell.title {
    padding-top: 0;
  }
}
