/*
Theme Name: Sandringham
Theme URI: http://www.alscient.com
Description: Sandringham WordPress Theme
Author: RUssell Poulter
Version: 1.0

License: Open Source
License URI:
*/
/**
 * @section CSS Reset
 * Meyer's CSS Reset, Normalized.css, and custom code.
 * @link http://meyerweb.com/eric/tools/css/reset/
 * @link http://necolas.github.io/normalize.css/
 */
/**
 * Mobile screen resizing
 * @link http://dev.w3.org/csswg/css-device-adapt/
 */
@-webkit-viewport {
  width: device-width;
  zoom: 1.0; }
@-moz-viewport {
  width: device-width;
  zoom: 1.0; }
@-ms-viewport {
  width: device-width;
  zoom: 1.0; }
@-o-viewport {
  width: device-width;
  zoom: 1.0; }
@viewport {
  width: device-width;
  zoom: 1.0; }
/**
 * Remove browser defaults
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
button, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/**
 * Add box sizing to everything
 * @link http://www.paulirish.com/2012/box-sizing-border-box-ftw/
 */
*,
*:before,
*:after {
  box-sizing: border-box; }

/**
 * Set display type for HTML5 semantic elements
 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

/**
 * Force scrollbar display to prevent jumping on pages.
 * Fix text resize bug on mobile devices.
 */
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

/**
 * Display audio, canvas, and video elements as inline block elements.
 */
audio,
canvas,
video {
  display: inline-block; }

/**
 * Prevent modern browsers from displaying audio without controls.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Prevent img and video elements from spilling outside of the page on smaller screens.
 */
img,
video {
  max-width: 100%;
  height: auto; }

/**
 * Prevent iframe, object, and embed elements from spilling outside of the page on smaller screens.
 */
iframe,
object,
embed {
  max-width: 100%; }

/**
 * Hide the template element in IE, Safari, and Firefox < 22.
 */
template {
  display: none;
  visibility: hidden; }

/**
 * Prevents IE from making scaled images look like crap
 */
img {
  -ms-interpolation-mode: bicubic; }

/**
 * Address outline inconsistency between Chrome and other browsers.
 */
a:focus,
button:focus {
  outline: thin dotted;
  outline: 0.3125rem auto -webkit-focus-ring-color;
  outline-offset: -0.15625rem; }

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

/**
 * @section Grid
 * Structure and layout
 */
/**
 * Base grid styles: single column
 */
.container {
  max-width: 80em;
  width: 88%;
  margin-left: auto;
  margin-right: auto; }

.row {
  margin-left: 0;
  margin-right: 0; }

.grid-fourth, .grid-third, .grid-half, .grid-two-thirds, .grid-three-fourths, .grid-full {
  float: left;
  width: 100%;
  padding-left: 0;
  padding-right: 0; }

/**
 * Reverses order of grid for content choreography
 */
.grid-flip {
  float: right; }

/**
 * Add columns to grid on bigger screens
 */
@media (min-width: 20em) {
  .row-start-xsmall .grid-fourth {
    width: 25%; }

  .row-start-xsmall .grid-third {
    width: 33.3333333333%; }

  .row-start-xsmall .grid-half {
    width: 50%; }

  .row-start-xsmall .grid-two-thirds {
    width: 66.6666666667%; }

  .row-start-xsmall .grid-three-fourths {
    width: 75%; }

  .row-start-xsmall .grid-full {
    width: 100%; } }
@media (min-width: 30em) {
  .row-start-small .grid-fourth {
    width: 25%; }

  .row-start-small .grid-third {
    width: 33.3333333333%; }

  .row-start-small .grid-half {
    width: 50%; }

  .row-start-small .grid-two-thirds {
    width: 66.6666666667%; }

  .row-start-small .grid-three-fourths {
    width: 75%; }

  .row-start-small .grid-full {
    width: 100%; } }
@media (min-width: 40em) {
  .grid-fourth {
    width: 25%; }

  .grid-third {
    width: 33.3333333333%; }

  .grid-half {
    width: 50%; }

  .grid-two-thirds {
    width: 66.6666666667%; }

  .grid-three-fourths {
    width: 75%; }

  .grid-full {
    width: 100%; }

  .offset-fourth {
    margin-left: 25%; }

  .offset-third {
    margin-left: 33.3333333333%; }

  .offset-half {
    margin-left: 50%; }

  .offset-two-thirds {
    margin-left: 66.6666666667%; }

  .offset-three-fourths {
    margin-left: 75%; }

  .offset-full {
    margin-left: 100%; } }
/**
 * Image gallery
 */
@media (min-width: 20em) {
  .grid-img {
    width: 50%; } }
@media (min-width: 30em) {
  .grid-img {
    width: 33.33333333333%; } }
@media (min-width: 40em) {
  .grid-img {
    width: 25%; } }

/* Add clearfix */
/**
 * @section Typography
 * Sets font styles for entire site
 */
body {
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #272727;
  background: #ffffff; }
  @media (min-width: 40em) {
    body {
      line-height: 1.5625; } }

p {
  margin-bottom: 1.5625em;
  font-size: 0.75rem; }

/**
 * Sizes for smaller and larger text
 */
.text-small {
  font-size: 0.9375rem; }

.text-tall {
  font-size: 1.1875rem;
  line-height: 1.4; }

@media (min-width: 40em) {
  .text-tall {
    font-size: 1.3125rem; } }
/**
 * Alternate text colors
 */
.text-muted {
  color: #3D484E; }

/**
 * Hyperlink styling
 */
a {
  color: #005876;
  text-decoration: none;
  word-wrap: break-word; }

a:hover,
a:focus,
a:active {
  color: #001f2a;
  text-decoration: underline;
  outline: none;
  -moz-outline-style: none; }

a:focus,
a:active {
  text-decoration: none; }

a img {
  border: none;
  background: none; }

/**
 * Prevents border/background on linked image hover.
 * Adds slight opacity.
 */
a:hover img {
  border: none;
  background: none;
  opacity: 0.8;
  filter: alpha(opacity=80); }

/**
 * List styling
 */
ul,
ol,
dl {
  margin-bottom: 1.5625em;
  margin-left: 2rem; }

ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0; }

ul {
  list-style: disc; }

ol {
  list-style: decimal; }

dl {
  margin-left: 0; }

dt {
  font-weight: bold; }

/**
 * Removes list styling.
 * For semantic reasons, should only be used on unordered lists.
 */
.list-unstyled {
  margin-left: 0;
  list-style: none; }

/**
 * Heading styling for h1 through h6 elements.
 * Heading class lets you use one heading type for semantics, but style it as another heading type.
 */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 1em;
  padding-top: 1em;
  word-wrap: break-word;
  font-family: "Marcellus", Georgia, Times, serif;
  color: #005876; }

h1,
.h1 {
  font-size: 1.5rem;
  padding-top: .5em; }

h2,
.h2 {
  font-size: 1.3125rem; }

h3,
.h3 {
  font-size: 1.1875rem; }

h4, h5, h6,
.h4, .h5, .h6 {
  font-size: 0.9375rem; }

.simple-title {
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  color: #3D484E;
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0 0 15px 0;
  padding: 0; }

.sub-title {
  color: #A80057; }

@media (min-width: 40em) {
  h1,
  .h1 {
    font-size: 2.25rem; }

  h2,
  .h2 {
    font-size: 1.75rem; }

  h3,
  .h3 {
    font-size: 1.5rem; }

  h4, h5, h6,
  .h4, .h5, .h6 {
    font-size: 1.125rem; }

  p {
    font-size: 0.875rem; } }
@media (min-width: 80em) {
  .hero h1, .hero .h1 {
    font-size: 3rem; }

  h2,
  .h2 {
    font-size: 2.25rem; }

  h3,
  .h3 {
    font-size: 2.25rem; }

  h4, h5, h6,
  .h4, .h5, .h6 {
    font-size: 1.5rem; }

  p {
    font-size: 1rem; }

  p.sub-title {
    font-size: 1.75rem;
    font-weight: 300; } }
/**
 * Lines, Quotes and Emphasis
 */
hr {
  margin: 2rem auto;
  border: 0;
  border-top: 0.0725rem solid #EBECED;
  border-bottom: 0 solid #ffffff; }

strong {
  font-weight: bold; }

em {
  font-style: italic; }

sub,
sup {
  position: relative;
  font-size: 85%;
  font-weight: bold;
  line-height: 0;
  vertical-align: baseline;
  margin-left: 0.25rem; }

sup {
  top: -0.5rem; }

sub {
  bottom: -0.25rem; }

/**
 * Highlighting colors
 */
::selection {
  color: #ffffff;
  background: #005876; }

::-moz-selection {
  color: #ffffff;
  background: #005876; }

/**
 * Blockquotes
 */
blockquote, q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

.footnote {
  margin-bottom: 1.5625em;
  font-size: 0.5rem; }
  @media (min-width: 40em) {
    .footnote {
      font-size: 0.75rem; } }

/**
 * @section Code
 * Styling for code and preformatted text.
 */
code,
pre {
  font-family: Menlo, Monaco, "Courier New", monospace;
  font-size: 0.875rem;
  border-radius: 0.0725rem; }

code {
  color: #dd1144;
  background-color: #fefefe;
  padding: 0.25rem; }

pre {
  display: block;
  margin-bottom: 1.5625em;
  line-height: 1.5;
  background-color: #fbfbfb;
  padding: 0.8125rem;
  tab-size: 4;
  white-space: pre-wrap;
  word-break: break-all; }

pre code {
  font-size: 1em;
  padding: 0;
  color: inherit;
  background-color: transparent;
  border: 0; }

/**
 * @section Buttons
 * Styling for CSS buttons.
 */
.btn {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.5rem 0.6875rem;
  line-height: 1.2;
  font-weight: normal;
  background-color: #005876;
  border: 0.0725rem solid #005876;
  border-radius: 0.0725rem;
  margin-right: 0.3125rem;
  margin-bottom: 0.3125rem;
  transition: .3s; }
  .btn:hover {
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.2);
    background-color: #006b90;
    border: 1px solid #006b90;
    text-decoration: none; }

.btn-primary {
  background-color: #A80057;
  border: 0.0725rem solid #A80057; }
  .btn-primary:hover {
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.2);
    background-color: #c20064;
    border: 1px solid #c20064; }

.txt-btn {
  font-size: 0.75rem;
  color: #A80057;
  background: url(img/ico_r_arrow_red.svg) no-repeat center right;
  padding: 0 15px 0 0; }

@media screen and (min-width: 60em) {
  .btn {
    font-size: 1.125rem;
    padding: 0.625rem 0.9375rem; }

  .txt-btn {
    font-size: 1.125rem; }

  .btn-lg {
    font-size: 1.5rem;
    padding: 1.125rem 1.875rem;
    margin-right: 0.625rem; } }
@media screen and (min-width: 80em) {
  .hero .btn {
    font-size: 1.5rem;
    padding: 1.125rem 1.875rem;
    margin-right: 0.625rem; } }
.btn,
.btn:visited,
a .btn:visited,
.btn:hover,
a .btn:hover,
.btn:focus,
a .btn:focus,
.btn:active,
a .btn:active,
.btn.active {
  color: #ffffff; }

.btn-secondary {
  background-color: #3D484E;
  border-color: #3D484E; }

.btn-secondary:hover,
a .btn-secondary:hover,
.btn-secondary:focus,
a .btn-secondary:focus,
.btn-secondary:active,
a .btn-secondary:active,
.btn-secondary.active {
  background-color: #1b2023;
  border-color: #1b2023; }

.btn:active,
.btn.active {
  box-shadow: inset 0 0.15625rem 0.25rem rgba(0, 0, 0, 0.15), 0 0.0725rem 0.15625rem rgba(0, 0, 0, 0.05);
  outline: 0; }

.btn.disabled,
.btn[disabled] {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
  filter: alpha(opacity=50);
  box-shadow: none; }

.btn-large {
  padding: 0.6875rem 0.9375rem;
  font-size: 1em;
  line-height: normal; }

.btn-block,
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  display: block;
  width: 100%;
  margin-right: 0;
  padding-right: 0;
  padding-left: 0; }

button,
.btn {
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  /**
   * @workaround Override default button styling
   * @affected Webkit/Firefox
   */
  background-image: none;
  -webkit-appearance: none; }

.btn:last-child,
input.btn {
  margin-right: 0; }

/**
 * @section Forms
 * Styling for form elements.
 */
form,
fieldset {
  margin-bottom: 1.5625em; }

legend,
label {
  display: block;
  font-weight: normal;
  padding: 0;
  margin-bottom: 0.3125rem; }

input,
textarea,
select {
  display: block;
  width: 100%;
  font: inherit;
  line-height: 1.5;
  color: #555555;
  margin-bottom: 1.1875rem;
  padding: 0.3125rem;
  border: 0.0725rem solid #6e828d;
  border-radius: 0.0725rem; }
  @media (min-width: 40em) {
    input,
    textarea,
    select {
      line-height: 1.5625; } }

form button,
form .button {
  margin-bottom: 1.1875rem; }

textarea {
  height: 12em; }

input[type="image"],
input[type="checkbox"],
input[type="radio"] {
  display: inline-block;
  width: auto;
  height: auto;
  padding: 0;
  margin-bottom: 0.3125rem;
  cursor: pointer; }

/**
 * Inline inputs
 */
.input-inline {
  display: inline-block;
  width: auto;
  vertical-align: middle; }

/**
 * Condensed inputs
 */
.input-condensed {
  padding: 0.0725rem 0.3125rem;
  font-size: 0.9375rem; }

body {
  height: 0; }

.pageContainer {
  position: relative;
  overflow: hidden;
  background: #fff;
  right: 0;
  transition-duration: 0.3s; }
  .pageContainer.navOpen {
    right: 200px; }

.alert {
  border-bottom: 1px solid #d6d6d6;
  padding: 5px 0px;
  background: #EBECED; }

.alert-text {
  text-align: center; }
  .alert-text p {
    font-size: 0.625rem;
    color: #005876; }
    .alert-text p:last-child {
      margin-bottom: 0; }
  .alert-text a {
    font-weight: bold;
    color: #A80057; }

.siteHeader {
  border-bottom: 1px solid #EBECED;
  position: relative; }

.site-logo {
  background-repeat: no-repeat;
  background-position: center center;
  width: 135px;
  height: 40px;
  display: block;
  background-size: contain;
  margin: 10px auto; }

.siteNav__links {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  background: #005876;
  width: 200px;
  list-style: none;
  margin: 0;
  z-index: -1;
  overflow: scroll; }
  .siteNav__links li {
    border-bottom: 1px solid #003243; }
    .siteNav__links li a {
      display: block;
      color: white;
      padding: 10px; }
  .siteNav__links .sub-menu {
    list-style: none;
    margin-left: 20px;
    padding-bottom: 10px;
    margin-top: -5px;
    max-height: 0;
    overflow: hidden;
    transition: 0.5s; }
    .siteNav__links .sub-menu--open {
      max-height: 400px; }
    .siteNav__links .sub-menu li {
      border-bottom: none; }
      .siteNav__links .sub-menu li a {
        padding: 5px 0;
        color: #7fabba; }

a.siteNav__mobBtn {
  position: absolute;
  right: 15px;
  top: 55px;
  color: #A80057;
  font-size: 10px;
  text-transform: uppercase;
  background: url(img/ico_nav.svg) no-repeat left center;
  padding: 5px 0 5px 30px; }

.siteHeader__contact {
  border-bottom: 1px solid #EBECED;
  font-size: 0.625rem;
  text-align: center;
  padding: 10px 0;
  margin-bottom: 0; }
  .siteHeader__contact li {
    display: inline;
    margin: 0 5px;
    color: #005876; }

.external-link__header {
  display: none; }
.external-link__menu {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: -1; }
  .external-link__menu a {
    background: #fff;
    padding: 5px 8px;
    border-radius: 3px;
    font-size: 0.625rem; }

.siteHeader__social {
  float: left;
  margin-left: 15px;
  margin-bottom: 0;
  height: 24px;
  margin-top: 18px; }
  .siteHeader__social li {
    display: inline-block;
    height: 24px; }
    .siteHeader__social li a {
      display: inline-block;
      width: 24px;
      height: 24px;
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
      margin: 0 3px; }
      .siteHeader__social li a.twitter {
        background: url(img/ico_twitter.svg) no-repeat; }
      .siteHeader__social li a.facebook {
        background: url(img/ico_facebook.svg) no-repeat; }
      .siteHeader__social li a.linkedin {
        background: url(img/ico_linkedin.svg) no-repeat; }
      .siteHeader__social li a.google {
        background: url(img/ico_google.svg) no-repeat; }
    .siteHeader__social li:nth-child(n + 3) {
      display: none; }

.hero {
  text-align: center; }

.hero--text {
  background: #EBECED;
  padding: 30px 25px; }
  .hero--text h1 {
    margin-bottom: 0px;
    padding-top: 0px;
    text-transform: uppercase; }

.hero--img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 140px;
  position: relative; }
  .hero--img:after {
    content: "";
    display: block;
    width: 75%;
    height: 5px;
    background: #005876;
    right: 0;
    bottom: 0;
    position: absolute; }

.txt-img-container {
  border-bottom: 1px solid #EBECED; }

.txt-img {
  margin-bottom: 20px; }

.txt-img--text {
  padding: 20px; }
  .txt-img--text h2 {
    padding-top: 0; }

.txt-img--image {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 150px; }

.txt-img--image {
  position: relative; }

.txt-img--txt-left .txt-img--image {
  line-height: 0; }
  .txt-img--txt-left .txt-img--image:before {
    content: "";
    display: block;
    background: #A80057;
    width: 60%;
    height: 5px;
    position: absolute;
    bottom: 0px;
    left: 0; }

.txt-img--txt-right .txt-img--image {
  line-height: 0; }
  .txt-img--txt-right .txt-img--image:before {
    content: "";
    display: block;
    background: #005876;
    width: 60%;
    height: 5px;
    position: absolute;
    bottom: 0px;
    right: 0; }

.section__header {
  padding: 20px; }
  .section__header .txt-btn {
    float: right; }
  .section__header h3 {
    float: left;
    margin-bottom: 0;
    padding-top: 0; }

.articles {
  border-bottom: 1px solid #EBECED; }

.article-item__txt {
  padding: 20px; }
  .article-item__txt h4 {
    padding-top: 0; }

.article-item__header.no-image {
  background-image: none !important; }
.article-item__header--advisers {
  background-image: url("img/article_header.jpg"); }

.article-item img {
  width: 100%; }

.pagination {
  margin: 20px 0;
  text-align: center; }
  .pagination .nolink {
    color: #EBECED; }

.pagination__divider {
  margin: 0 20px; }

.call-out {
  background: #005876;
  color: #fff;
  padding: 40px;
  font-family: "Marcellus", Georgia, Times, serif; }
  .call-out p {
    margin-bottom: 0;
    font-size: 1.5rem; }

.txt-2up-container {
  border-bottom: 1px solid #EBECED; }

.txt-2up {
  padding-bottom: 10px; }

.txt-2up--text {
  padding: 20px 20px 10px 20px; }
  .txt-2up--text h2 {
    padding-top: 0; }

.txt-1up {
  background: #EBECED;
  text-align: center;
  padding: 40px; }
  .txt-1up h2 {
    padding-top: 0; }
  .txt-1up--imgbg {
    position: relative; }
    .txt-1up--imgbg h2,
    .txt-1up--imgbg p {
      color: #fff; }
    .txt-1up--imgbg:before {
      position: absolute;
      display: block;
      content: "";
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.6); }
  .txt-1up--text {
    position: relative; }
  .txt-1up--left {
    background-size: contain;
    background-position: center bottom;
    padding: 40px 40px 150px 40px;
    background-repeat: no-repeat;
    background-color: #fff;
    border-bottom: 1px solid #EBECED; }

.testimonials {
  border-bottom: 1px solid #EBECED; }
  .testimonials .section__header {
    border-top: 0; }

.testimonial {
  margin: 0 20px 30px 20px; }

.testimonial--text {
  background: #005876;
  color: #fff;
  padding: 18px 20px;
  font-size: 0.75rem;
  border-radius: 5px;
  position: relative; }
  .testimonial--text p:last-child {
    margin-bottom: 0; }
  .testimonial--text:after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    background: #005876;
    border-radius: 5px;
    position: absolute;
    transform: rotate(45deg);
    bottom: -10px;
    left: 30px; }

.testimonial--person--pic {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  overflow: hidden;
  margin: 20px 10px 0 17px;
  float: left; }

.testimonial--person--name,
.testimonial--person--job {
  font-size: 0.75rem; }

.testimonial--person--info {
  float: left; }

.testimonial--person--name {
  margin-top: 27px;
  font-weight: 600; }

.people {
  border-bottom: 1px solid #EBECED;
  padding: 10px 0; }

.people--subSection {
  margin-top: 20px;
  text-align: center;
  font-size: 0; }

.subSection-title {
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  text-align: center;
  font-size: 1.125rem;
  color: #3D484E;
  padding-top: 0;
  margin-bottom: 30px;
  font-weight: 300; }

.person {
  text-align: center;
  width: 50%;
  vertical-align: top;
  display: inline-block; }

.person--info {
  font-size: 0.75rem;
  margin: 0 10px 30px 10px; }
  .person--info li:nth-child(2) {
    color: #aeb2b5;
    font-size: 0.625rem; }

.person--pic {
  width: 80px;
  height: 80px;
  border-radius: 60px;
  overflow: hidden;
  border: 2px solid #A80057;
  margin: 0 auto 10px auto; }

.downloads {
  border-bottom: 1px solid #EBECED;
  padding: 30px 0 10px 0; }

a.download {
  display: block;
  font-size: 0.875rem;
  background-color: #e6eff2;
  border: 2px solid #005876;
  border-radius: 5px;
  padding: 20px 20px 20px 90px;
  margin: 0 30px 20px 30px;
  background-image: url(img/ico_dl.svg);
  background-repeat: no-repeat;
  background-position: 20px center;
  transition: 0.3s; }
  a.download:hover {
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    background-color: #edf3f5; }

.download--meta {
  font-size: 0.75rem; }

.nav-grid {
  border-bottom: 1px solid #EBECED; }

.nav-grid__container {
  padding: 30px 0 30px 5px;
  text-align: center;
  font-size: 0; }

.nav-grid__item-wrap {
  width: 100%;
  display: inline-block;
  vertical-align: bottom; }

a.nav-grid__item {
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  height: 180px;
  margin: 0 5px 5px 0;
  transition: 0.5s; }
  a.nav-grid__item:hover {
    text-decoration: none;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.4);
    transform: scale(1.08);
    z-index: 999; }

.nav-grid__item__inner {
  text-align: center;
  background-image: linear-gradient(-180deg, rgba(0, 87, 118, 0.4) 0%, #005876 100%);
  width: 100%;
  height: 100%;
  padding: 100px 10px 20px 10px;
  position: relative; }
  .nav-grid__item__inner h3 {
    font-size: 1.125rem; }
  .nav-grid__item__inner h3,
  .nav-grid__item__inner .txt-btn {
    color: #fff;
    padding-top: 0;
    margin-bottom: 0; }
  .nav-grid__item__inner p {
    color: #fff;
    font-size: 0.875rem; }
  .nav-grid__item__inner .txt-btn {
    position: absolute;
    display: inline-block;
    left: 50%;
    width: 60px;
    margin-left: -30px;
    bottom: 10px;
    font-size: 0.75rem;
    display: inline-block;
    background: url(img/ico_r_arrow_white.svg) no-repeat center right; }
  .nav-grid__item__inner--wtext {
    padding: 40px 10px 20px 10px; }

.article-full {
  border-bottom: 1px solid #EBECED; }

.article-item__header {
  height: 85px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; }
  .article-item__header.no-image {
    height: 0px; }

.article-item__header--news {
  background: #005876; }

.article-item__container {
  padding: 18px 20px; }
  .article-item__container a.download {
    margin: 0 0 20px 0; }

.article-item__title h1 {
  padding-top: 0;
  margin-bottom: 5px; }
.article-item__title p {
  font-family: "Marcellus", Georgia, Times, serif;
  color: #A80057; }

.article-item__content h2 {
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  margin-bottom: 10px;
  padding-top: 20px;
  color: #3d484e;
  font-size: 1.125rem; }

@media screen and (min-width: 40em) {
  .article-item__content h2 {
    font-size: 1.5rem; } }
.article-image {
  margin: 20px 0; }
  .article-image img {
    width: 100%; }

.side-nav ul {
  margin-bottom: 0; }
.side-nav li.nav-title {
  border-bottom: 1px solid #EBECED;
  padding: 15px 20px;
  font-family: "Marcellus", Georgia, Times, serif;
  font-size: 1.25rem;
  color: #A80057;
  border-top: 1px solid #EBECED; }
.side-nav li a {
  display: block;
  border-bottom: 1px solid #EBECED;
  padding: 15px 20px;
  transition: 0.3s; }
  .side-nav li a:hover {
    text-decoration: none;
    box-shadow: -9px 0px 16px 0px rgba(0, 0, 0, 0.16); }

.form-outer {
  border-bottom: 1px solid #EBECED; }

section.form {
  padding: 20px;
  font-weight: 300; }
  section.form .btn {
    display: inline-block;
    width: 120px;
    height: 35px;
    margin-top: 10px;
    margin-bottom: 10px;
    cursor: pointer; }

.standard-input br {
  display: none; }
.standard-input label {
  font-size: 0.875rem; }
.standard-input input,
.standard-input textarea {
  border: 1px solid #b1b6b8;
  border-radius: 0;
  padding: 0 20px;
  font-size: 0.875rem;
  transition: 0.3s; }
  .standard-input input:focus,
  .standard-input textarea:focus {
    border: 1px solid #A80057;
    outline: 0 !important;
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.2); }
  .standard-input input:hover,
  .standard-input textarea:hover {
    border: 1px solid #A80057; }
  .standard-input input.input-error,
  .standard-input textarea.input-error {
    border: 1px solid #d0021b;
    background: #fdf6f7; }
.standard-input input {
  height: 50px; }
.standard-input textarea {
  padding: 15px 20px; }
.standard-input .wpcf7-not-valid {
  border: 1px solid #d0021b;
  background: #fdf6f7; }

.input-msg-error,
.wpcf7-not-valid-tip {
  font-size: 0.75rem !important;
  color: #d0021b !important;
  position: relative;
  bottom: 20px; }

.form-msg,
.wpcf7-response-output {
  font-size: 0.875rem !important;
  padding: 10px 20px !important;
  margin: 10px 0 !important; }

.form-msg--ok,
.wpcf7-mail-sent-ok {
  background: #ebffe2;
  color: #417505;
  border: none !important; }

.form-msg--warning,
.wpcf7-validation-errors {
  background: #fff8ed;
  color: #f5a623;
  border: none !important; }

.form-msg--error,
.wpcf7-mail-sent-ng {
  background: #fdf6f7;
  color: #d0021b;
  border: none !important; }

.contact-details {
  border-bottom: 1px solid #EBECED; }

.contact-detils-container {
  padding: 20px;
  max-width: 850px; }

.icon-list li {
  display: block;
  padding: 0px 0 10px 35px; }
  .icon-list li.tel {
    background: url(img/ico_phone_red.svg) no-repeat left center; }
  .icon-list li.mobile {
    background: url(img/mob-icon.svg) no-repeat left center; }
  .icon-list li.email {
    background: url(img/ico_email_red.svg) no-repeat left center; }
  .icon-list li.twitter {
    background: url(img/ico_twitter_red.svg) no-repeat left center; }
  .icon-list li.linkedin {
    background: url(img/ico_linkedin_red.svg) no-repeat left center; }
  .icon-list li.google {
    background: url(img/ico_google_red.svg) no-repeat left center; }
  .icon-list li.facebook {
    background: url(img/ico_facebook_red.svg) no-repeat left center; }

ul.address-contact {
  margin-bottom: 0;
  padding: 0px 0 0 35px;
  background: url(img/ico_building_red.svg) no-repeat left top 5px; }

#map {
  height: 300px; }

.map {
  border-bottom: 1px solid #EBECED; }
  .map img {
    width: 100%; }

.slider__text {
  margin-bottom: 70px; }

section.advert {
  text-align: center;
  margin: 20px 0 15px 0; }
  section.advert a {
    line-height: 0; }

.adviser-search {
  margin: 20px 0 20px 0; }
  .adviser-search .btn {
    margin-top: 50px; }
  .adviser-search__nav {
    margin-bottom: -1px; }
    .adviser-search__nav li {
      display: block; }
      .adviser-search__nav li.active a {
        background: #ffffff;
        color: #A80057;
        border-top: 1px solid #D8DADC;
        border-left: 1px solid #D8DADC;
        border-bottom: none;
        border-right: 1px solid #D8DADC;
        opacity: 1; }
      .adviser-search__nav li a {
        padding: 10px 15px;
        display: block;
        color: #3D484E;
        background: #F7F7F7;
        border-top: 1px solid #D8DADC;
        border-left: 1px solid #D8DADC;
        border-bottom: none;
        border-right: 1px solid #D8DADC;
        opacity: 0.5; }
        .adviser-search__nav li a:hover {
          text-decoration: none; }
  .adviser-search__tab {
    border: 1px solid #D8DADC;
    padding: 15px;
    display: none; }
    .adviser-search__tab--current {
      display: inherit; }
  .adviser-search form {
    margin: 0; }
  .adviser-search__form-section h5 {
    font-size: 1.125rem;
    font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
    font-weight: bold;
    color: #3D484E;
    padding-bottom: 10px;
    border-bottom: 1px solid #D8DADC; }

.expertise .adviser-search__tab {
  white-space: pre-line; }

.input-pair {
  display: flex;
  align-items: center; }
  .input-pair .standard-input {
    max-width: 300px; }
  .input-pair .or {
    margin: 0 35px; }

.checkbox-items {
  display: flex;
  flex-wrap: wrap; }

.checkbox-input {
  flex-basis: 100%; }

.checkbox-container {
  border-bottom: 1px solid #D8DADC;
  padding: 20px 0; }
  .checkbox-container input {
    margin-right: 10px; }

.adviser-list {
  border-top: 1px solid #D8DADC; }

.adviser-item {
  border-bottom: 1px solid #D8DADC;
  padding: 30px 0;
  text-align: center;
  display: none; }
  .adviser-item:nth-child(-n+20) {
    display: block; }
  .adviser-item__pic {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50px;
    border: 2px solid #A80057;
    margin: 0 auto; }
  .adviser-item__info {
    flex-grow: 1; }
    .adviser-item__info h4 {
      font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
      font-size: 1.125rem;
      font-weight: 600;
      margin: 0;
      padding: 0;
      color: #3D484E; }
    .adviser-item__info p {
      font-size: 0.875rem;
      margin-bottom: 0; }
  .adviser-item__main-info {
    padding-bottom: 10px; }
    .adviser-item__main-info .btn {
      font-size: 1rem;
      line-height: 1.6875rem; }
  .adviser-item ul.expertise-list {
    margin: 10px 0 0 0; }
    .adviser-item ul.expertise-list li {
      display: inline;
      font-size: 0.875rem;
      color: #005876;
      margin-right: 10px;
      white-space: nowrap; }

.adviser-images {
  padding: 30px;
  border-bottom: 1px solid #EBECED; }
  .adviser-images .person--pic {
    margin: 0; }

.adviser-contact {
  padding: 30px; }
  .adviser-contact .email {
    white-space: nowrap; }
  .adviser-contact .icon-list,
  .adviser-contact .address-contact {
    float: none; }
    .adviser-contact .icon-list li,
    .adviser-contact .address-contact li {
      font-size: 1rem;
      color: #005876; }

.adviser-images__pic {
  width: 150px;
  height: 150px;
  border-radius: 75px;
  border: 2px solid #A80057;
  overflow: hidden; }
  .adviser-images__pic img {
    width: 100%; }

.person--logo {
  padding: 20px 0; }

footer {
  background: #3D484E;
  color: #a9a9a9;
  font-size: 12px; }
  footer h5 {
    color: #a9a9a9;
    padding-top: 0; }
  footer a {
    color: #a9a9a9; }

.footer-bottom,
.footer-top {
  padding: 20px; }

.footer-top {
  border-bottom: 1px solid #fff;
  padding-bottom: 50px; }

.footer-logo {
  display: none; }

.footer-social li a {
  padding: 7px 0 7px 30px;
  display: block; }
  .footer-social li a.twitter {
    background: url(img/ico_twitter_footer.svg) no-repeat left center; }
  .footer-social li a.facebook {
    background: url(img/ico_facebook_footer.svg) no-repeat left center; }
  .footer-social li a.google {
    background: url(img/ico_google_footer.svg) no-repeat left center; }
  .footer-social li a.linkedin {
    background: url(img/ico_linkedin_footer.svg) no-repeat left center; }

.siteMap li {
  width: 50%;
  float: left; }
.siteMap a {
  display: block;
  padding: 2px 5px 2px 0; }

.footer-bottom {
  position: relative; }
  .footer-bottom:before {
    content: "";
    display: block;
    width: 135px;
    height: 37px;
    background: url(img/footer_burst.svg) no-repeat center center;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -34px; }

.smallprint p {
  font-size: 0.75rem; }

/**
 * @section Alignment, Spacing, & Visibility
 * Override defaults.
 */
/**
 * Text alignment
 */
.text-center {
  text-align: center; }

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

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

/**
 * Floats
 */
.float-left {
  float: left; }

.float-center {
  float: none;
  margin-left: auto;
  margin-right: auto; }

.float-right {
  float: right; }

/**
 * Spacing
 */
.no-space {
  margin: 0;
  padding: 0; }

.no-space-bottom {
  margin-bottom: 0;
  padding-bottom: 0; }

.no-space-top {
  margin-top: 0;
  padding-top: 0; }

.space-bottom {
  margin-bottom: 2rem; }

.space-bottom-small {
  margin-bottom: 0.5rem;
  padding-bottom: 0; }

.space-top {
  padding-top: 0.8125rem; }

/**
 * Visibility
 */
.screen-reader {
  position: absolute;
  top: -9999em;
  left: -9999em; }

/**
 * @workaround
 * @affected IE 8/9/10
 */
[hidden] {
  display: none;
  visibility: hidden; }

/**
 * Clearfix
 */
.group:before, .container:before,
.row:before,
.group:after,
.container:after,
.row:after {
  display: table;
  content: ""; }

.group:after, .container:after,
.row:after {
  clear: both; }

@media (min-width: 40em) {
  .grid-fourth {
    width: 50%; }

  .offset-three-fourths {
    width: 25%; } }
@media (min-width: 60em) {
  .grid-fourth {
    width: 25%; } }
/**
 * @section Print
 * Styling for printed content. Adapted from HTML5BP.
 * @link http://html5boilerplate.com
 */
@media print {
  /**
   * Universal selector.
   * Reset all content to transparent background, black color, and remove box and text shadows.
   */
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important; }

  /**
   * Specifies page margin
   */
  @page {
    margin: 0.5cm; }
  /**
   * Underline all links
   */
  a,
  a:visited {
    text-decoration: underline; }

  /**
   * Show URL after links
   */
  a[href]:after {
    content: " (" attr(href) ")"; }

  /**
   * Don't show URL for internal links
   */
  a[href^="#"]:after {
    content: ""; }

  /**
   * Specifies the minimum number of lines to print at the top and bottom of a page.
   */
  p,
  h1, h2, h3 {
    orphans: 3;
    widows: 3; }

  /**
   * Avoid inserting a page break after headers
   */
  h1, h2, h3 {
    page-break-after: avoid; }

  /**
   * Change border color on blockquotes and preformatted text.
   * Avoid page breaks inside the content
   */
  pre,
  blockquote {
    border-color: #999;
    page-break-inside: avoid; }

  /**
   * Displayed as a table header row group
   */
  thead {
    display: table-header-group; }

  /**
   * Avoid inserting a page break inside table rows and images
   */
  tr,
  img {
    page-break-inside: avoid; } }
.slider-contaiiner {
  border-bottom: 1px solid #EBECED; }

.slider {
  padding: 30px 20px 20px 20px; }

.turnover, .payments {
  width: 50%;
  float: left;
  font-size: 0.75rem;
  color: #A80057; }
  .turnover .result, .turnover .value, .payments .result, .payments .value {
    font-size: 1.125rem;
    color: #005876; }
  .turnover .vat, .payments .vat {
    color: #7F8182;
    font-size: 0.625rem; }

.turnover {
  text-align: left; }

.payments {
  text-align: right; }

.slider-results {
  margin-top: 30px; }

.rangeslider,
.rangeslider__fill {
  display: block;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px; }

.rangeslider {
  background: #e6e6e6;
  position: relative; }

.rangeslider--horizontal {
  height: 5px;
  width: 100%; }

.rangeslider--vertical {
  width: 20px;
  min-height: 150px;
  max-height: 100%; }

.rangeslider--disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4; }

.rangeslider__fill {
  background: #005876;
  position: absolute; }

.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%; }

.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%; }

.rangeslider__handle {
  background: #A80057;
  cursor: pointer;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: absolute;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%; }

.rangeslider__handle:active {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xMiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.12)));
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12));
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12));
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12)); }

.rangeslider--horizontal .rangeslider__handle {
  top: -13px;
  touch-action: pan-y;
  -ms-touch-action: pan-y; }

.rangeslider--vertical .rangeslider__handle {
  left: -10px;
  touch-action: pan-x;
  -ms-touch-action: pan-x; }

input[type="range"]:focus + .rangeslider .rangeslider__handle {
  -moz-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  -webkit-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  box-shadow: 0 0 8px rgba(255, 0, 255, 0.9); }

#bbpress-forums {
  margin: 20px; }
  #bbpress-forums input, #bbpress-forums textarea, #bbpress-forums select {
    border: 1px solid #D8DADC; }
  #bbpress-forums img.avatar {
    border-radius: 50%;
    border: 1px solid #D8DADC !important;
    margin-bottom: -3px !important; }
  #bbpress-forums #bbp-search-form {
    width: 254px; }
    #bbpress-forums #bbp-search-form #bbp_search {
      width: 200px !important;
      display: inline-block; }
    #bbpress-forums #bbp-search-form #bbp_search_submit {
      width: 50px;
      display: inline-block; }
  #bbpress-forums #subscription-toggle {
    float: right;
    position: relative; }

.quicktags-toolbar input {
  width: auto; }

.bbp-the-content-wrapper {
  border: 1px solid #D8DADC; }

.bbp-breadcrumb {
  margin: 0px 0 10px 0; }

input#bbp_topic_tags {
  border: 1px solid #D8DADC; }

.bbp-submit-wrapper button.button {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.5rem 0.6875rem;
  line-height: 1.2;
  font-weight: normal;
  background-color: #005876;
  border: 0.0725rem solid #005876;
  border-radius: 0.0725rem;
  margin-right: 0.3125rem;
  margin-bottom: 0.3125rem;
  transition: .3s;
  color: #fff; }

#buddypress {
  margin: 20px; }
  #buddypress input, #buddypress textarea, #buddypress select {
    width: auto;
    border: 1px solid #D8DADC; }
  #buddypress .user-nicename {
    padding-top: 0px; }
  #buddypress img.avatar {
    border-radius: 50%; }
  #buddypress div.activity-comments {
    margin: 20px 0 0 70px !important; }

#bp-browse-button {
  margin: auto; }

@media screen and (min-width: 30em) {
  .txt-img--image {
    height: 250px; }

  a.download {
    padding: 30px 30px 30px 90px; }

  .nav-grid__item-wrap {
    width: 50%; } }
@media screen and (min-width: 40em) {
  .alert {
    padding: 10px 0px; }

  .alert-text p {
    font-size: 0.75rem; }

  .site-logo {
    width: 242px;
    height: 72px;
    margin: 24px auto; }

  .siteHeader__contact {
    font-size: 0.875rem;
    padding: 20px 0; }
    .siteHeader__contact li {
      margin: 0 10px; }

  .siteHeader__social {
    margin-top: 50px;
    margin-left: 30px; }

  a.siteNav__mobBtn {
    font-size: 14px;
    top: 110px;
    right: 30px; }

  .hero--text {
    padding: 50px 70px; }

  .hero--img {
    height: 250px; }

  .txt-img--text {
    padding: 40px; }

  .txt-img--image {
    height: 350px; }

  .siteHeader__social li:nth-child(n+3) {
    display: inline-block; }

  .section__header {
    padding: 35px; }

  .articles-list {
    padding: 0 15px 30px 15px; }

  .article-item {
    margin: 0 15px 30px 15px; }

  .article-item__txt {
    padding: 0px; }
    .article-item__txt h4 {
      padding-top: 0;
      min-height: 50px; }

  .txt-2up {
    padding: 40px 0px; }

  .txt-2up--text {
    padding: 0 30px; }

  .txt-1up {
    padding: 60px 0; }
    .txt-1up--left {
      padding: 40px 40px 150px 40px; }

  .txt-1up--text {
    max-width: 550px;
    margin: 0 auto; }

  .people--subSection {
    margin-top: 50px; }

  .person {
    width: 33.33%; }

  .subSection-title {
    font-size: 1.5rem;
    margin-bottom: 60px; }

  .person--pic {
    width: 120px;
    height: 120px; }

  .person--info {
    font-size: 1.125rem;
    margin: 0 10px 30px 10px; }
    .person--info li:nth-child(2) {
      font-size: 1rem; }

  .download-outer {
    width: 50%;
    float: left; }

  a.download {
    margin: 0 15px 20px 15px; }

  .downloads {
    padding: 50px 15px 30px 15px; }

  .nav-grid__container {
    padding: 40px 0 40px 10px; }

  .nav-grid__item-wrap {
    width: 33.33%; }

  a.nav-grid__item {
    margin: 0 10px 10px 0;
    height: 250px; }

  .nav-grid__item__inner {
    padding: 160px 10px 20px 10px; }
    .nav-grid__item__inner .txt-btn {
      bottom: 20px; }
    .nav-grid__item__inner--wtext {
      padding: 80px 10px 20px 10px; }

  .article-item__container {
    padding: 28px 30px; }

  section.form {
    padding: 50px;
    max-width: 1075px;
    margin: 0 auto; }
    section.form .btn {
      width: 180px;
      height: 50px;
      margin-top: 20px; }

  .form-container {
    max-width: 650px; }

  .standard-input label {
    font-size: 1.125rem; }
  .standard-input input, .standard-input textarea {
    padding: 0 25px;
    font-size: 1.125rem; }
  .standard-input input {
    height: 70px;
    margin-bottom: 30px; }
    .standard-input input.sm-input {
      height: 50px; }
  .standard-input textarea {
    padding: 30px 25px; }

  .input-msg-error {
    bottom: 25px; }

  .contact-detils-container {
    padding: 40px; }

  .icon-list {
    width: 50%;
    float: left; }

  .adviser-meta .icon-list, .adviser-meta .address-contact {
    width: auto; }

  ul.address-contact {
    width: 50%;
    float: left; }

  .slider {
    padding: 60px 50px 50px 50px;
    max-width: 650px;
    margin: 0 auto; }

  .turnover, .payments {
    font-size: 0.875rem; }
    .turnover .result, .turnover .value, .payments .result, .payments .value {
      font-size: 1.5rem; }
    .turnover .vat, .payments .vat {
      font-size: 0.625rem; }

  section.advert {
    margin: 50px 0 45px 0; }

  footer {
    font-size: 14px; }

  .footer-bottom, .footer-top {
    padding: 40px; }

  .footer-top {
    position: relative; }

  .copyright {
    text-align: right;
    width: 100%;
    display: block; } }
@media screen and (min-width: 60em) {
  .alert {
    padding: 10px 40px; }

  .alert-text {
    text-align: left; }
    .alert-text p {
      font-size: 0.875rem; }

  .siteHeader {
    z-index: 9999; }

  .site-logo {
    margin: 24px 30px; }

  .siteNav {
    right: 30px;
    position: absolute;
    top: 102px; }

  .siteNav__links {
    position: relative;
    float: right;
    background: none;
    width: auto;
    z-index: 0;
    overflow: visible; }
    .siteNav__links > li {
      display: inline;
      margin-left: 10px;
      border-bottom: none; }
      .siteNav__links > li.current-menu-item > a {
        border-bottom: 5px solid #005876; }
      .siteNav__links > li.menu-item-has-children {
        position: relative; }
        .siteNav__links > li.menu-item-has-children:hover .sub-menu {
          top: 35px;
          margin-top: 0;
          opacity: 1;
          box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.4); }
      .siteNav__links > li a {
        display: inline;
        color: #005876;
        padding: 0 0 43px 0; }
    .siteNav__links .sub-menu {
      position: absolute;
      border-radius: 5px;
      right: 0;
      margin-left: 0;
      padding: 10px 15px;
      background: #005876;
      margin-top: -999em;
      opacity: 0;
      top: 15px;
      transition: opacity 0.5s, top 0.3s;
      text-align: right;
      max-height: none; }
      .siteNav__links .sub-menu--open {
        max-height: none; }
      .siteNav__links .sub-menu li {
        margin-left: 0;
        padding: 5px 0; }
        .siteNav__links .sub-menu li a {
          white-space: pre;
          color: white; }

  .siteNav__mobBtn {
    display: none; }

  .siteHeader__contact {
    text-align: left;
    padding: 15px 20px;
    border-right: 1px solid #EBECED;
    position: relative;
    margin-left: 0px; }

  .external-link__header {
    display: block;
    position: absolute;
    right: 150px;
    top: 15px; }
    .external-link__header a {
      color: #A80057;
      font-size: 0.875rem; }
  .external-link__menu {
    display: none; }

  .siteHeader__social {
    position: absolute;
    right: 20px;
    top: 14px;
    margin-top: 0;
    margin-right: 0; }

  .hero--home {
    position: relative; }

  .hero--text {
    width: 42%;
    float: left;
    text-align: left;
    padding: 70px 50px 50px 50px; }

  .hero--img {
    width: 58%;
    float: left;
    position: absolute;
    left: 42%;
    top: 0;
    bottom: 0;
    right: 0;
    height: auto; }

  .txt-img--text {
    padding: 0 40px; }

  .txt-img {
    position: relative;
    margin: 50px 0; }

  .txt-img--txt-left {
    border-left: 5px solid #005876; }
    .txt-img--txt-left .txt-img--image {
      left: 42%; }
    .txt-img--txt-left .txt-img--textContainer {
      width: 42%;
      float: left; }

  .txt-img--txt-right {
    border-right: 5px solid #A80057; }
    .txt-img--txt-right .txt-img--image {
      left: 0%; }
    .txt-img--txt-right .txt-img--textContainer {
      position: relative;
      width: 42%;
      left: 58%; }

  .txt-img--image {
    width: 58%;
    position: absolute;
    height: auto;
    top: 0;
    bottom: 0;
    right: 0; }

  .txt-2up {
    max-width: 1080px;
    margin: 0 auto;
    padding: 100px 0px; }

  .txt-2up--text {
    padding: 0 50px; }

  .txt-1up {
    padding: 100px 0;
    background-position: center right; }
    .txt-1up--left {
      text-align: left; }
      .txt-1up--left .txt-1up--text {
        margin: 0 0 0 40px; }

  .testimonial {
    margin: 0 25px 30px 25px; }

  .person {
    width: 20%; }

  .people--subSection {
    max-width: 990px;
    margin: 50px auto 40px auto; }

  .download-outer {
    width: 33.33%; }

  .section__header {
    padding: 35px; }

  a.nav-grid__item {
    height: 350px; }

  .call-out {
    padding: 60px; }
    .call-out p {
      font-size: 1.875rem;
      max-width: 840px;
      line-height: 2.8125rem; }

  .article-full {
    border-bottom: 1px solid #EBECED; }

  .article-wrap {
    max-width: 1075px;
    margin: 0 auto; }

  .article-item__header {
    height: 200px; }
    .article-item__header.no-image {
      height: 80px; }

  .article-item__container {
    padding: 48px 50px 50px 50px;
    margin-top: -80px;
    background: #fff;
    width: 70%;
    float: left; }

  .article-item__container--anchor {
    margin-top: 0px; }

  .side-nav {
    float: left;
    width: 30%; }
    .side-nav ul {
      border-left: 1px solid #EBECED;
      padding-bottom: 50px; }

  section.form {
    padding: 100px 50px; }

  .form-msg {
    font-size: 0.875rem;
    padding: 15px 25px;
    margin: 20px 0; }

  #map {
    height: 400px; }

  .contact-detils-container {
    padding: 100px 50px; }

  .contact-details {
    max-width: 1075px;
    margin: 0 auto; }

  .icon-list li {
    font-size: 1.25rem;
    padding: 10px 0 10px 45px; }

  ul.address-contact {
    font-size: 1.25rem; }

  .nav-grid__item-wrap {
    width: 25%; }

  .nav-grid__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 25px 100px 30px; }

  .nav-grid__item__inner {
    padding: 180px 10px 20px 10px; }
    .nav-grid__item__inner h3 {
      font-size: 1.875rem; }
    .nav-grid__item__inner .txt-btn {
      bottom: 20px; }
    .nav-grid__item__inner--wtext {
      padding: 140px 10px 20px 10px; }

  .slider {
    max-width: 1075px;
    margin: 0 auto; }

  .slider-inner {
    max-width: 650px; }

  .turnover,
  .payments {
    font-size: 1.125rem; }
    .turnover .result,
    .turnover .value,
    .payments .result,
    .payments .value {
      font-size: 2.25rem; }

  section.advert {
    margin: 100px 0 95px 0; }

  .adviser-search {
    margin: 50px 0px; }
    .adviser-search__nav li {
      display: inline-block;
      margin-right: -6px; }
      .adviser-search__nav li.active a {
        background: #ffffff;
        color: #A80057;
        border-bottom: 1px solid #ffffff; }
      .adviser-search__nav li a {
        padding: 10px 15px;
        display: inline-block;
        border-bottom: 1px solid #D8DADC;
        opacity: 1; }
        .adviser-search__nav li a:hover {
          text-decoration: none; }
    .adviser-search__tab {
      padding: 50px; }

  .expertise {
    margin: 50px 0px; }

  .checkbox-input {
    flex-basis: 50%; }
    .checkbox-input:nth-child(odd) .checkbox-container {
      margin-right: 15px; }
    .checkbox-input:nth-child(even) .checkbox-container {
      margin-left: 15px; }

  .adviser-item {
    align-items: center;
    text-align: left;
    display: none; }
    .adviser-item:nth-child(-n+20) {
      display: flex; }
    .adviser-item__pic {
      width: 100px;
      height: 100px;
      flex-grow: 0;
      margin: 0 20px 0 0; }
    .adviser-item__main-info {
      display: flex;
      justify-content: space-between;
      align-content: flex-start;
      border-bottom: 1px solid #D8DADC; }
    .adviser-item__info h4 {
      font-size: 1.5rem; }
    .adviser-item__info p {
      font-size: 1rem; }

  .adviser-meta {
    float: right;
    width: 30%;
    border-left: 1px solid #EBECED; }

  .footer-logo {
    display: block;
    float: right;
    position: absolute;
    bottom: 50px;
    right: 40px; } }
@media screen and (min-width: 80em) {
  .pageContainer {
    max-width: 1540px;
    margin: 0 auto;
    border-left: 1px solid #EBECED;
    border-right: 1px solid #EBECED; }

  .siteNav__links li {
    margin-left: 30px; }

  .hero--text {
    padding: 100px 60px 60px 70px; }

  .txt-img {
    margin: 100px 0; }
    .txt-img .btn {
      margin-top: 80px; }

  .section__header {
    padding: 50px 70px; }

  .articles-list {
    padding: 0 55px 70px 55px; }

  .call-out {
    padding: 100px; }

  .people--subSection {
    margin: 100px auto 50px auto; }

  .testimonials {
    padding: 0px 0 80px 0; }

  .testimonials-items {
    padding: 0 45px; }

  .testimonial {
    margin: 0 25px 30px 25px; }

  .testimonial--text {
    padding: 48px 50px;
    font-size: 1rem; }

  .testimonial--person--pic {
    width: 70px;
    height: 70px;
    border-radius: 35px;
    margin: 30px 10px 0 8px; }

  .testimonial--person--name, .testimonial--person--job {
    font-size: 0.875rem; }

  .testimonial--person--name {
    margin-top: 45px; }

  a.download {
    font-size: 1.125rem;
    padding: 50px 50px 50px 130px;
    margin: 0 30px 20px 30px;
    background-position: 50px center; }

  .download--meta {
    font-size: 0.875rem;
    margin-top: 10px; }

  .downloads {
    padding: 100px 55px 80px 55px; } }
@media screen and (min-width: 80em) {
  .pageContainer {
    max-width: 1540px;
    margin: 0 auto;
    border-left: 1px solid #EBECED;
    border-right: 1px solid #EBECED; }

  .siteNav__links li {
    margin-left: 30px; }

  .hero--text {
    padding: 100px 60px 60px 70px; }

  .txt-img {
    margin: 100px 0; }
    .txt-img .btn {
      margin-top: 80px; }

  .section__header {
    padding: 50px 70px; }

  .articles-list {
    padding: 0 55px 70px 55px; }

  .call-out {
    padding: 100px; }

  .people--subSection {
    margin: 100px auto 50px auto; }

  .testimonials {
    padding: 0px 0 80px 0; }

  .testimonials-items {
    padding: 0 45px; }

  .testimonial {
    margin: 0 25px 30px 25px; }

  .testimonial--text {
    padding: 48px 50px;
    font-size: 1rem; }

  .testimonial--person--pic {
    width: 70px;
    height: 70px;
    border-radius: 35px;
    margin: 30px 10px 0 8px; }

  .testimonial--person--name, .testimonial--person--job {
    font-size: 0.875rem; }

  .testimonial--person--name {
    margin-top: 45px; }

  a.download {
    font-size: 1.125rem;
    padding: 50px 50px 50px 130px;
    margin: 0 30px 20px 30px;
    background-position: 50px center; }

  .download--meta {
    font-size: 0.875rem;
    margin-top: 10px; }

  .downloads {
    padding: 100px 55px 80px 55px; } }
.landing-header {
  width: 100%;
  height: 200px; }

.landing-intro {
  text-align: center;
  padding: 40px 40px 20px 40px;
  margin: -150px 20px 0 20px;
  background: #fff; }
  .landing-intro img {
    margin-bottom: 20px; }
  .landing-intro h1 {
    font-size: 1rem; }

.landing-options {
  padding-bottom: 20px; }
  .landing-options__option {
    margin: 20px auto;
    box-shadow: 0 2px 34px 0 rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    text-align-last: center;
    max-width: 400px; }
    .landing-options__option img {
      width: 100%; }
    .landing-options__option__text {
      padding: 0 20px 20px 20px;
      text-align: center; }

.landing-footer {
  text-align: center;
  padding: 40px 20px 20px 20px; }
  .landing-footer img {
    margin-bottom: 40px; }

@media screen and (min-width: 40em) {
  .landing-intro {
    margin: -150px 100px 0 100px; }

  .landing-options__option {
    margin: 30px auto; } }
@media screen and (min-width: 60em) {
  .landing-header {
    height: 350px; }

  .landing-intro {
    margin: -200px 100px 0 100px;
    padding: 50px 0 30px 0; }
    .landing-intro img {
      margin-bottom: 70px;
      width: 350px; }
    .landing-intro h1 {
      font-size: 1.5rem; }

  .landing-options {
    display: flex;
    padding: 0 100px 100px 100px; }
    .landing-options__option {
      flex: 1;
      margin: 1em; }
      .landing-options__option h2 {
        font-size: 1.5rem; }
      .landing-options__option__text {
        padding: 30px 50px 50px 50px; } }
.new-downloads {
  margin: 0 10px; }

.new-download {
  background: #EAEAEA;
  display: flex;
  align-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  max-width: 500px;
  border: 1px solid transparent; }
  .new-download:hover {
    border: 1px solid #005876;
    text-decoration: none; }
  .new-download .triangle {
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 100px 0 100px 173.2px;
    border-color: transparent transparent transparent #d8d8d8;
    top: 50%;
    margin-top: -100px; }
  .new-download__img {
    background: #D8D8D8;
    padding: 15px;
    line-height: 0;
    position: relative;
    width: 85px; }
    .new-download__img img {
      width: 100%; }
  .new-download__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3px 20px; }
  .new-download__title {
    font-size: 0.875rem; }
  .new-download__meta {
    color: #3D484E;
    font-size: 0.75rem; }

.side-nav--download {
  margin-top: 20px; }

@media screen and (min-width: 40em) {
  .new-downloads {
    display: flex;
    flex-wrap: wrap; }

  .new-download {
    margin: 0 25px 50px 25px; }

  .new-download-outer {
    flex: 1;
    flex-basis: 33.333%; } }
@media screen and (min-width: 60em) {
  .new-download-outer {
    flex: 1;
    flex-basis: 25%; } }
/*------------------------------------*\
	$IE HACKS AND FIXES
\*------------------------------------*/

/*# sourceMappingURL=style.css.map */
