@charset "UTF-8";
/*
Theme Name: Intention document builder
Theme URI: https://byintention.co
Description: WordPress theme by Intention
Author: Nick Hayward
Author URI: https://byintention.co
Version: 1.0
Tags: 
License:
License URI:
*/
/* raleway-300 - latin */
@font-face {
  font-display: swap;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 300;
  src: url("fonts/Raleway-Light.woff2") format("woff2"), url("fonts/Raleway-Light.woff") format("woff");
}
/* raleway-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/Raleway-Medium.woff2") format("woff2"), url("fonts/Raleway-Medium.woff") format("woff");
}
/* raleway-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/Raleway-Bold.woff2") format("woff2"), url("fonts/Raleway-Bold.woff") format("woff");
}
:root {
  /* Font weights */
  --light: 100;
  --regular: 500;
  --bold: 700;
  /* Base Font */
  --base-font-family: "Raleway",-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
  --base-font-weight: --regular;
  --base-font-size: 1rem;
  --base-line-height: 1.5;
  --header-font-family: "Raleway",-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;
  /* Colours */
  --lightgrey: #eee;
  --colour-text: #333;
  --colour-link: #0A9000;
  --colour-link-hover: #0071da;
  --colour-button: #0A9000;
  --colour-button-hover: #0071da;
}

/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  /* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.15; /* 1. Correct the line height in all browsers. */
  -webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
}

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

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

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/
/**
Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
  border-color: currentcolor;
}

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

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

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}

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

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

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

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

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

/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

/* Basic Styles */
html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  -webkit-font-feature-settings: "lnum", "ss09" 1;
          font-feature-settings: "lnum", "ss09" 1;
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
  font-family: var(--base-font-family);
  font-weight: var(--regular);
  color: var(--colour-text);
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  opacity: 1;
  -webkit-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}

body.loaded {
  opacity: 1;
  -webkit-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: #055871;
  font-family: var(--header-font-family);
  font-weight: var(--bold);
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 20px;
  text-wrap: balance;
  page-break-inside: avoid;
}

h3, h4, h5, h6 {
  margin-bottom: 15px;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: inherit;
  text-decoration: none;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.6rem;
}

h5 {
  font-size: 1.44rem;
}

h6 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 var(--base-font-size) 0;
}

p img {
  margin: 0;
}

address {
  margin: 0 0 var(--base-font-size) 0;
}

em {
  font-style: italic;
}

strong {
  font-weight: var(--bold);
}

.smallText {
  font-size: 0.8em;
}

.largeText {
  font-size: 1.2em;
  line-height: 1.3em;
}

.wp-caption {
  background: #eee;
  margin-bottom: 20px;
}
.wp-caption p {
  padding: 5px 10px;
}
.wp-caption .wp-caption-text:last-child {
  margin: 0;
}

@media only screen and (min-width: 830px) {
  html {
    font-size: calc(var(--base-font-size) * 1.15);
  }
}
@media only screen and (min-width: 1800px) {
  html {
    font-size: calc(var(--base-font-size) * 1.4);
  }
}
/*	Blockquotes  */
blockquote, blockquote p {
  color: var(--colour-text);
  font-style: normal;
}
blockquote:last-child, blockquote p:last-child {
  margin: 0;
}

blockquote {
  background: #fafafa;
  margin: 0 0 var(--base-font-size);
  padding: 20px;
}

blockquote cite {
  display: block;
  font-size: 12px;
}

blockquote cite a, blockquote cite a:visited, blockquote cite a:visited {
  color: #555;
}

hr {
  border: solid #ddd;
  border-width: 1px 0 0;
  clear: both;
  margin: 10px 0 30px;
  height: 0;
}

/* Links */
a, a:visited {
  color: var(--colour-link);
  font-weight: var(--bold);
  text-decoration: underline;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

a:hover {
  color: var(--colour-link-hover);
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

a:focus-visible {
  outline-color: var(--colour-text);
}

a:active {
  background: inherit;
}

p a, p a:visited {
  line-height: inherit;
}

/* Lists */
ul, ol {
  margin: 0;
  padding-bottom: 30px;
}

ul {
  list-style: disc outside;
}

ol {
  list-style: decimal outside;
}

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

dl {
  margin: 0 0 30px 0;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 0 0 30px;
}

/* Notification Styles */
.wpcf7-submit {
  margin-bottom: 10px;
}

.sent .wpcf7-response-output,
.positive, .wpcf7-mail-sent-ok {
  background-color: #006600;
  background-image: url(images/icon-pos.svg);
  background-position: 7px 10px;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  color: #fff;
  font-size: 16px;
  padding: 5px 10px 5px 28px;
}

.invalid .wpcf7-response-output,
.negative,
div.wpcf7-validation-errors,
div span.wpcf7-not-valid-tip {
  background-color: #c00;
  background-image: url(images/icon-neg.svg);
  background-position: 7px 10px;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  color: #fff;
  font-size: 16px;
  padding: 5px 10px 5px 28px;
}

.information {
  background-color: #0056A6;
  background-image: url(images/icon-info.svg);
  background-position: 7px 10px;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  color: #fff;
  font-size: 16px;
  padding: 5px 10px 5px 28px;
}

span.wpcf7-not-valid-tip {
  display: block;
}

.wpcf7 br,
.screen-reader-response {
  display: none;
}

/* CSS animation for CF7 ajax loader */
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* hide original loader */
.wpcf7-spinner {
  display: none;
}

.submitting .wpcf7-spinner {
  display: inline-block;
}

/* style for custom loader - '1s' for speeding up animation */
.wpcf7-spinner {
  background-image: url(images/icon-refresh4.svg);
  background-position: center center;
  background-size: cover;
  -webkit-animation: fa-spin 1s infinite linear;
  animation: fa-spin 1s infinite linear;
  height: 36px;
  margin-left: 10px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  vertical-align: middle;
  width: 36px;
}

.wpcf7-spinner:before {
  display: inline-block;
  height: 36px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  width: 36px;
}

tt,
kbd,
code,
pre {
  font-family: monospace;
  white-space: pre-wrap;
}

pre {
  margin-bottom: 20px;
}

sub,
sup {
  font-size: 80%;
  height: 0;
  line-height: 1;
  vertical-align: baseline;
  position: relative;
}

sub {
  top: 0.5ex;
}

sup {
  bottom: 1ex;
}

var {
  font-style: italic;
}

cite {
  font-style: italic;
}

q:before {
  content: "“";
}

q:after {
  content: "”";
}

.left {
  float: left;
}

.right {
  float: right;
}

.imgleft, .alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.imgright, .alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.aligncenter {
  display: block;
  margin: 0 auto 20px auto;
}

.centre {
  text-align: center;
}

abbr, acronym {
  font-style: italic;
  text-decoration: underline;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 20px 0;
}

th {
  background: #eee;
}

th, td {
  border: 1px solid #666;
  padding: 10px;
}

/* Images */
img {
  height: auto;
  max-width: 100%;
}

/* Buttons */
a::-moz-focus-inner,
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button,
.button,
.button:visited,
.btn,
.btn:visited,
input[type=submit],
input[type=reset],
input[type=button] {
  background-color: var(--colour-button);
  border: 0;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: var(--bold);
  line-height: 1.2;
  overflow: visible;
  padding: 0.5rem 1rem;
  text-decoration: none;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
  -webkit-appearance: none;
}

button:hover,
.button:hover,
.btn:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover {
  background-color: var(--colour-button-hover);
  color: #fff;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}

button:active,
.button:active,
.button:focus,
.btn:active,
input[type=submit]:active,
input[type=reset]:active,
input[type=button]:active {
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.5);
  color: #fff;
}

input[type=submit]:disabled {
  background: #999;
  cursor: not-allowed;
}

@media only screen and (min-width: 600px) {
  .button,
  .button:visited,
  .btn,
  .btn:visited,
  button,
  input[type=submit],
  input[type=reset],
  input[type=button] {
    font-size: 1rem;
  }
}
/* Forms */
form {
  margin-bottom: 20px;
}

form > div,
fieldset > div {
  margin-bottom: 10px;
}

fieldset {
  background: #fafafa;
  border: 1px solid #eee;
  margin-bottom: 20px;
  padding: 30px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=number],
textarea,
select {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  color: #777;
  display: block;
  font-family: var(--base-font-family);
  font-size: var(--base-font-size);
  line-height: 1.2;
  margin: 0;
  padding: 0.5rem 0.75rem;
  max-width: 100%;
  width: 100%;
  -webkit-appearance: none;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus {
  border: 1px solid #aaa;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  color: #444;
}

textarea {
  min-height: 60px;
}

.select-input {
  background-color: #fff;
  background-image: url(images/icon-chev-down-grey.svg);
  background-position: right 12px top 50%;
  background-repeat: no-repeat;
  background-size: 14px auto;
  border: 1px solid #ccc;
  border-radius: 2px;
  height: 2.2rem;
  min-width: 200px;
  overflow: hidden;
  position: relative;
}
.select-input:focus-within {
  outline: rgb(0, 95, 204) auto 2px;
  outline-offset: 1px;
}

select {
  -ms-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  cursor: pointer;
  border: 0;
  display: block;
  font-family: var(--base-font-family);
  font-size: var(--base-font-size);
  font-weight: 400;
  line-height: 1.2;
  outline: 0;
  padding: 1rem 0.75rem;
  position: absolute;
  left: 0;
  top: 50%;
  text-indent: 0.01px;
  text-overflow: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 999;
}

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

input[type=checkbox] {
  display: inline;
}

@media only screen and (min-width: 600px) {
  input[type=text],
  input[type=password],
  input[type=email],
  input[type=tel],
  input[type=number],
  textarea,
  select {
    font-size: var(--base-font-size);
  }
}
/* Grid - mobile */
.container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0 2%;
  width: 100%;
}
.container .mob-one-half {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  margin: 0 1%;
}
.container .one,
.container .two,
.container .three,
.container .four,
.container .five,
.container .six,
.container .seven,
.container .eight,
.container .nine,
.container .ten,
.container .eleven,
.container .twelve,
.container .one-quarter,
.container .one-half,
.container .three-quarter,
.container .one-third,
.container .two-thirds {
  -ms-hyphens: auto;
      hyphens: auto;
  margin: 0 1%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 98%;
          flex: 0 0 98%;
}

.row {
  margin: 0;
}

/* Grid - tablet */
@media only screen and (min-width: 768px) {
  .container {
    background: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1%;
  }
  .container .column,
  .container .columns {
    margin: 0 1%;
  }
  .container .tab-one {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6.333%;
            flex: 0 0 6.333%;
  }
  .container .tab-two {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14.666%;
            flex: 0 0 14.666%;
  }
  .container .tab-quarter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23%;
            flex: 0 0 23%;
  }
  .container .tab-three {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23%;
            flex: 0 0 23%;
  }
  .container .tab-one-third {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31.333%;
            flex: 0 0 31.333%;
  }
  .container .tab-four {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31.333%;
            flex: 0 0 31.333%;
  }
  .container .tab-five {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 39.666%;
            flex: 0 0 39.666%;
  }
  .container .tab-one-half {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
  .container .tab-six {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
  .container .tab-seven {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 56.333%;
            flex: 0 0 56.333%;
  }
  .container .tab-eight {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 64.666%;
            flex: 0 0 64.666%;
  }
  .container .tab-three-quarter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 73%;
            flex: 0 0 73%;
  }
  .container .tab-nine {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 73%;
            flex: 0 0 73%;
  }
  .container .tab-ten {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 81.333%;
            flex: 0 0 81.333%;
  }
  .container .tab-eleven {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 89.666%;
            flex: 0 0 89.666%;
  }
  .container .tab-twelve {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 98%;
            flex: 0 0 98%;
  }
  .container .one {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6.333%;
            flex: 0 0 6.333%;
  }
  .container .two {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14.666%;
            flex: 0 0 14.666%;
  }
  .container .three {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23%;
            flex: 0 0 23%;
  }
  .container .four {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31.333%;
            flex: 0 0 31.333%;
  }
  .container .five {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 39.666%;
            flex: 0 0 39.666%;
  }
  .container .six {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
  .container .seven {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 56.333%;
            flex: 0 0 56.333%;
  }
  .container .eight {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 64.666%;
            flex: 0 0 64.666%;
  }
  .container .nine {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 73%;
            flex: 0 0 73%;
  }
  .container .ten {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 81.333%;
            flex: 0 0 81.333%;
  }
  .container .eleven {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 89.666%;
            flex: 0 0 89.666%;
  }
  .container .twelve {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 98%;
            flex: 0 0 98%;
  }
  .container .one-quarter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23%;
            flex: 0 0 23%;
  }
  .container .one-half {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
  .container .three-quarter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 73%;
            flex: 0 0 73%;
  }
  .container .one-third {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31.333%;
            flex: 0 0 31.333%;
  }
  .container .two-thirds {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 64.666%;
            flex: 0 0 64.666%;
  }
  .row {
    margin: 0 -1%;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    padding: 0;
  }
  .container .desk-one {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6.333%;
            flex: 0 0 6.333%;
  }
  .container .desk-two {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14.666%;
            flex: 0 0 14.666%;
  }
  .container .desk-one-quarter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23%;
            flex: 0 0 23%;
  }
  .container .desk-three {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23%;
            flex: 0 0 23%;
  }
  .container .desk-one-third {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31.333%;
            flex: 0 0 31.333%;
  }
  .container .desk-four {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31.333%;
            flex: 0 0 31.333%;
  }
  .container .desk-five {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 39.666%;
            flex: 0 0 39.666%;
  }
  .container .desk-half {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
  .container .desk-six {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
  .container .desk-seven {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 56.333%;
            flex: 0 0 56.333%;
  }
  .container .desk-two-thirds {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 64.666%;
            flex: 0 0 64.666%;
  }
  .container .desk-eight {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 64.666%;
            flex: 0 0 64.666%;
  }
  .container .desk-three-quarters {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 73%;
            flex: 0 0 73%;
  }
  .container .desk-nine {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 73%;
            flex: 0 0 73%;
  }
  .container .desk-ten {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 81.333%;
            flex: 0 0 81.333%;
  }
  .container .desk-eleven {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 89.666%;
            flex: 0 0 89.666%;
  }
  .container .desk-twelve {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 98%;
            flex: 0 0 98%;
  }
}
@media only screen and (min-width: 1800px) {
  .container {
    max-width: 1000px;
  }
  .container .ultraw-one {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6.333%;
            flex: 0 0 6.333%;
  }
  .container .ultraw-two {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14.666%;
            flex: 0 0 14.666%;
  }
  .container .ultraw-one-quarter {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23%;
            flex: 0 0 23%;
  }
  .container .ultraw-three {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23%;
            flex: 0 0 23%;
  }
  .container .ultraw-one-third {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31.333%;
            flex: 0 0 31.333%;
  }
  .container .ultraw-four {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31.333%;
            flex: 0 0 31.333%;
  }
  .container .ultraw-five {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 39.666%;
            flex: 0 0 39.666%;
  }
  .container .ultraw-half {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
  .container .ultraw-six {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
  .container .ultraw-seven {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 56.333%;
            flex: 0 0 56.333%;
  }
  .container .ultraw-two-thirds {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 64.666%;
            flex: 0 0 64.666%;
  }
  .container .ultraw-eight {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 64.666%;
            flex: 0 0 64.666%;
  }
  .container .ultraw-three-quarters {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 73%;
            flex: 0 0 73%;
  }
  .container .ultraw-nine {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 73%;
            flex: 0 0 73%;
  }
  .container .ultraw-ten {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 81.333%;
            flex: 0 0 81.333%;
  }
  .container .ultraw-eleven {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 89.666%;
            flex: 0 0 89.666%;
  }
  .container .ultraw-twelve {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 98%;
            flex: 0 0 98%;
  }
}
.gridRow {
  clear: both;
  margin-bottom: 2%;
  width: 100%;
}

.gridRow > div {
  background: var(--lightgrey);
  border: 1px solid #ddd;
  padding: 1%;
}

/* Clearing */
/* Self Clearing Goodness */
.container:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* Use clearfix class on parent to clear nested columns,
or wrap each row of columns in a <div class="row"> */
.clearfix:before,
.clearfix:after,
.row:before,
.row:after {
  content: " ";
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.row:after,
.clearfix:after {
  clear: both;
}

.row,
.clearfix {
  zoom: 1;
}

/* You can also use a <br class="clear" /> to clear columns */
.clear {
  clear: both;
}

/* Header */
.skipLink {
  position: absolute;
  left: 50%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  z-index: 9999;
}
.skipLink:focus {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.wrap {
  background: transparent;
}

#header {
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: 80px;
  position: relative;
  z-index: 1000;
}
#header .container {
  height: 80px;
  position: relative;
}

@media only screen and (min-width: 600px) {
  #header {
    position: relative;
  }
}
@media only screen and (min-width: 1200px) {
  #header {
    height: 100px;
  }
  #header .container {
    height: 100px;
    position: relative;
  }
}
#headerEdit {
  position: absolute;
  right: 1%;
  bottom: 40px;
}
#headerEdit a {
  margin-left: 20px;
}

#headerLogo {
  height: auto;
  position: absolute;
  left: 20px;
  bottom: 15px;
  width: 60px;
}
#headerLogo svg, #headerLogo img {
  display: block;
  height: 60px;
  width: 60px;
}

@media only screen and (min-width: 1200px) {
  #headerLogo {
    margin: 0;
    position: absolute;
    left: 1%;
    bottom: 20px;
    -webkit-transform: none;
            transform: none;
    width: 60px;
  }
  #headerLogo svg, #headerLogo img {
    display: block;
    height: 60px;
    width: 60px;
  }
}
#nav2 {
  display: none;
}

#headerMenuMobile {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  font-size: 0;
  position: absolute;
  top: 25px;
  right: 20px;
  vertical-align: top;
  width: 29px;
  z-index: 2000;
}
#headerMenuMobile .btn {
  background: transparent;
  color: #fff;
  font-size: 0;
  padding: 0;
}
#headerMenuMobile .btn:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}
#headerMenuMobile button {
  background: transparent;
  border-radius: 0;
  display: block;
  font-size: 0;
  height: 29px;
  width: 29px;
}
#headerMenuMobile button span {
  background: var(--colour-button);
  display: block;
  font-size: 0;
  height: 5px;
  overflow: hidden;
  position: absolute;
  top: 12px;
  left: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 29px;
}
#headerMenuMobile button:before {
  background: var(--colour-button);
  content: "";
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 29px;
}
#headerMenuMobile button:after {
  background: var(--colour-button);
  content: "";
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 29px;
}
#headerMenuMobile button.navOpen:before {
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 12px;
  left: -3px;
  width: 38px;
}
#headerMenuMobile button.navOpen span {
  opacity: 0;
  font-size: 0;
}
#headerMenuMobile button.navOpen:after {
  background: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 12px;
  left: -3px;
  width: 38px;
}

#headerContactMobile {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  font-size: 0;
  height: 34px;
  position: absolute;
  top: 22px;
  right: 80px;
  text-align: center;
  vertical-align: top;
  width: 30px;
}
#headerContactMobile svg {
  height: 100%;
}
#headerContactMobile svg path {
  fill: var(--colour-link);
}
#headerContactMobile a {
  display: block;
  font-size: 0;
  height: 34px;
  width: 30px;
}

@media only screen and (min-width: 1200px) {
  #headerMenuMobile,
  #headerContactMobile {
    display: none;
  }
}
/* Flexible content */
#documentPreview {
  padding: 50px 0;
}

.transparent {
  background: transparent;
}

.white {
  background: #fff;
}

.green {
  background: var(--colour-button);
}

.grey {
  background: #E6EDED;
}

.lightgrey {
  background: #fafafa;
}

.icon svg {
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}
.icon.mobile svg {
  position: relative;
  top: -2px;
}

.rounded {
  border-radius: 10px;
  overflow: hidden;
}

.shadow {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.padded {
  padding: 20px;
}

@media only screen and (min-width: 600px) {
  .padded {
    padding: 30px;
  }
}
.hero .container {
  padding: 0;
}
.hero .banner {
  background: #333;
  display: block;
  position: relative;
}
.hero .banner img {
  display: block;
  width: 100%;
}
.hero .banner .inner {
  color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}
.hero .banner .inner h1, .hero .banner .inner h2 {
  color: #fff;
  font-weight: bold;
  line-height: 1.1;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
}
.hero .banner .inner a {
  color: #fff;
  text-decoration: none;
}
.hero .banner .inner h1:last-child,
.hero .banner .inner p:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .hero .twelve.columns {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .hero .twelve.columns {
    margin: 0 1%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 98%;
            flex: 0 0 98%;
  }
}
.filler {
  padding: 40px 0 0 0;
}

@media only screen and (min-width: 768px) {
  .filler {
    padding: 70px 0 0 0;
  }
}
.testimonials {
  background: #fff;
  background-position: center center;
  background-size: cover;
  clear: both;
  color: #fff;
  font-size: var(--base-font-size);
  padding: 60px 20px 120px 20px;
  position: relative;
  text-align: center;
}
.testimonials .container {
  position: inherit;
}
.testimonials blockquote {
  padding: 0 12%;
}
.testimonials h2 {
  color: #fff;
  font-size: 26px;
  line-height: 1.2;
}
.testimonials cite {
  opacity: 0.75;
}
.testimonials .tns-nav {
  display: none;
}
.testimonials .tns-controls {
  position: absolute;
  bottom: -50px;
  left: 0;
  text-align: center;
  width: 100%;
  z-index: 500;
}
.testimonials .tns-controls button {
  background: none;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  border: none;
  font-size: 0;
  height: 40px;
  margin: 0 5px;
  width: 40px;
}
.testimonials .tns-controls button:first-child {
  background-image: url(images/icon-down-grey.svg);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.testimonials .tns-controls button:nth-child(2) {
  background-image: url(images/icon-down-grey.svg);
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.newsCards h2 {
  padding: 0 20px;
  text-align: center;
}
.newsCards .card {
  background: #fff;
  margin-bottom: 40px;
}
.newsCards .card .newsThumb img {
  display: block;
  width: 100%;
}
.newsCards .card .newsExcerpt {
  padding: 20px;
}

@media only screen and (min-width: 768px) {
  .newsCards .card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 31.333%;
            flex: 0 0 31.333%;
    margin: 0 1%;
  }
  .newsCards .card .newsExcerpt {
    padding: 30px;
  }
}
.gallery {
  background: transparent;
  clear: both;
  padding: 0;
  text-align: center;
}
.gallery .mygallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gallery .galleryImage {
  margin: 0 1% 2% 1%;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
}
.gallery .galleryImage a {
  display: block;
}
.gallery .galleryImage img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.gallery .overlay {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 20;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.gallery .close-overlay {
  display: none;
}
.gallery .galleryImage a:focus-visible .overlay,
.gallery .galleryImage:hover .overlay {
  opacity: 1;
  cursor: pointer;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.gallery svg {
  color: #fff !important;
  opacity: 0;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  text-decoration: none;
  text-align: center;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 40px;
  z-index: 100;
}
.gallery .galleryImage a:focus-visible svg,
.gallery .galleryImage:hover svg {
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

@media only screen and (min-width: 400px) {
  .gallery .mygallery {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .gallery .galleryImage {
    margin: 0 1%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23%;
            flex: 0 0 23%;
  }
}
.twoColumn {
  clear: both;
  padding: 0;
}
.twoColumn .box {
  margin-bottom: 20px;
}
.twoColumn.boxed .box {
  padding: 20px;
}
.twoColumn p:last-child {
  margin: 0;
}

@media only screen and (min-width: 768px) {
  .twoColumn {
    padding: 0;
  }
  .twoColumn .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .twoColumn.middle .container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .twoColumn .box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 46%;
            flex: 0 0 46%;
    margin: 0 2%;
  }
  .twoColumn.boxed .box {
    padding: 30px;
  }
}
.threeColumn {
  padding: 0;
}
.threeColumn .box {
  margin-bottom: 20px;
}
.threeColumn.boxed .box {
  padding: 20px;
}
.threeColumn p:last-child {
  margin: 0;
}

@media only screen and (min-width: 768px) {
  .threeColumn {
    padding: 0;
  }
  .threeColumn .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .threeColumn.middle .container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .threeColumn .box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 29.333%;
            flex: 0 0 29.333%;
    margin: 0 2%;
  }
  .threeColumn.boxed .box {
    padding: 30px;
  }
}
.full {
  clear: both;
}
.full .text {
  margin: 0 auto;
  max-width: 800px;
  padding: 0 20px;
}
.full p:last-child {
  margin: 0;
}

@media only screen and (min-width: 1200px) {
  .full .text {
    padding: 0;
  }
}
.boxes .box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  margin-bottom: 30px;
}
.boxes .box:last-child {
  margin-bottom: 0;
}
.boxes .box p:last-child {
  margin: 0;
}

@media only screen and (min-width: 600px) {
  .boxes .normal {
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
  .boxes .top {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .boxes .middle {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .boxes .box {
    margin-bottom: 0;
  }
}
.textImage {
  background-size: cover;
  background-position: center top;
  padding: 0;
}
.textImage .text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  float: none;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  width: calc(96% - 24px);
}
.textImage .text h2, .textImage .text h3 {
  color: #fff;
}

@media only screen and (min-width: 768px) {
  .textImage .text.right {
    float: right;
    text-align: right;
    width: 50%;
  }
  .textImage .text.left {
    float: left;
    text-align: left;
    width: 50%;
  }
  .textImage .text.centre {
    display: block;
    float: none;
    margin: 0 auto;
    width: 50%;
  }
}
.faqs {
  margin: 0 auto;
  padding: 0;
}
.faqs .faq {
  border-bottom: 1px solid #eee;
  padding: 12px 12px 12px 40px;
  position: relative;
}
.faqs .faq:first-child {
  border-top: 1px solid #eee;
}
.faqs .faq .faq-question {
  cursor: pointer;
  margin-bottom: 0;
  position: relative;
}
.faqs .faq .showFaq {
  background: transparent;
  content: "";
  cursor: pointer;
  display: inline-block;
  font-size: 0;
  height: 24px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  padding: 0;
  position: absolute;
  top: 20px;
  left: 0;
  width: 30px;
}
.faqs .faq .showFaq svg {
  height: 20px;
  width: 100%;
}
.faqs .faq .faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.faqs .faq.active .showFaq {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.faqs .faq.active .faq-answer {
  max-height: 1000px;
  opacity: 1;
  padding-top: 20px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

@media only screen and (min-width: 768px) {
  .faqs .faq .showFaq {
    top: 23px;
  }
}
.tabs .container {
  max-width: 800px;
}
.tabs .tabList {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 400;
}
.tabs .tabList li {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}
.tabs .tabList li button {
  background: #eee;
  border: 1px solid #ddd;
  border-bottom: 0;
  color: var(--colour-text);
  cursor: pointer;
  display: block;
  margin: 0;
  padding: 10px 20px;
  text-align: left;
  text-decoration: none;
  width: 100%;
}
.tabs .tabList li button:hover {
  text-decoration: none;
}
.tabs .tabList li.active button {
  background: #fff;
  padding-bottom: 11px;
}
.tabs .tabsPanel {
  border: 1px solid #ddd;
  margin-top: -1px;
  position: relative;
}
.tabs .tabContent {
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: none;
  opacity: 0;
  overflow: hidden;
  padding: 20px;
  position: relative;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 300;
}
.tabs .tabContent.active {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

@media only screen and (min-width: 768px) {
  .tabs .tabList li {
    display: inline-block;
    width: auto;
  }
  .tabs .tabList li button {
    display: inline-block;
    width: auto;
  }
}
.accordion .container {
  max-width: 800px;
}
.accordion .accordionPanel h3 {
  background: #fafafa;
  border: 1px solid #eee;
  margin: 0;
  padding: 10px 20px;
}
.accordion .accordionPanel h3 a {
  cursor: pointer;
  display: block;
}
.accordion .accordionPanel .inner {
  border: 1px solid #eee;
  height: 0;
  opacity: 0;
  padding: 0 20px;
  overflow: hidden;
  -webkit-transition: all 0s linear;
  transition: all 0s linear;
}
.accordion .accordionPanel.active .inner {
  height: unset;
  opacity: 1;
  padding: 20px;
  -webkit-transition: opacity 0.2s linear, height 0.2s linear, padding 0s linear;
  transition: opacity 0.2s linear, height 0.2s linear, padding 0s linear;
}

/* Sidebar section */
#sidebar {
  list-style: none;
  margin: 0;
  padding: 0 0 0 40px;
}
#sidebar #submit {
  float: left;
  margin-left: 5px;
}
#sidebar > li {
  background: #eee;
  margin: 0 0 20px 0;
  padding: 20px;
}
#sidebar li li {
  margin: 0;
}
#sidebar form > div {
  margin: 0;
}
#sidebar label {
  display: none;
}

#s {
  float: left;
  margin-right: 5px;
  width: 50%;
}

#searchform {
  display: block;
  margin: 0;
  max-width: 100%;
  position: relative;
  text-align: right;
  width: 100%;
}
#searchform input {
  height: 46px;
  padding: 0 12px;
}

#search {
  position: absolute;
  left: 0;
  right: 75px;
}

#s {
  border: none;
  border-radius: 0;
}

#search input[type=text] {
  width: 100%;
}

#searchsubmit {
  width: 60px;
}

#searchwrapper {
  background: #eee;
  padding: 10px;
}
#searchwrapper label {
  display: none;
}
#searchwrapper div {
  margin: 0;
}

.searchPage {
  margin: 0 auto;
  max-width: 800px;
  padding: 40px 20px;
}

/* Contact */
/* Footer */
#footer {
  background: var(--colour-text);
  color: #F3F9F9;
  padding: 50px 0;
  text-align: center;
}
#footer a {
  color: #F3F9F9;
}
#footer a:hover {
  color: #fff;
}
#footer ul {
  list-style: none;
  margin: 0;
}

.btt {
  display: block;
  font-size: 0;
  margin: 0 auto;
  padding-top: 30px;
  text-align: center;
  width: auto;
}
.btt a {
  display: inline-block;
}
.btt svg {
  height: auto;
  width: 30px;
}
.btt path {
  fill: #eee;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}
.btt a:hover path {
  fill: #fff;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

/* WP admin bar */
#wpadminbar {
  display: none;
}

@media only screen and (min-width: 960px) {
  #wpadminbar {
    display: block;
  }
}
.wpcf7-form {
  /* Hide the browser's default checkbox */
}
.wpcf7-form input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  background-position: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  border: 1px solid #666;
  border-radius: 5px;
  display: inline-block;
  height: 24px;
  margin-right: 10px;
  position: relative;
  top: 0;
  vertical-align: top;
  width: 24px;
}
.wpcf7-form input[type=checkbox]:focus {
  border-color: #918cad;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(35, 24, 91, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(35, 24, 91, 0.25);
}
.wpcf7-form input:checked[type=checkbox] {
  background-color: #666;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3E%3C/svg%3E");
}
.wpcf7-form {
  /* Create a custom checkbox */
}
.wpcf7-form .checkmark {
  background-color: #fafafa;
  border: 1px solid #666;
  border-radius: 5px;
  display: inline-block;
  height: 25px;
  position: absolute;
  top: 7px;
  left: 0;
  width: 25px;
}
.wpcf7-form .checkmark:focus {
  border-color: #918cad;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(35, 24, 91, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(35, 24, 91, 0.25);
}
.wpcf7-form {
  /* On mouse-over, add a grey background color */
}
.wpcf7-form .wpcf7:hover input[type=checkbox] ~ .checkmarkx {
  background-color: #ccc;
}
.wpcf7-form {
  /* When the checkbox is checked, add a blue background */
}
.wpcf7-form input[type=checkbox]:checked ~ .checkmark {
  background-color: #666;
}
.wpcf7-form {
  /* Create the checkmark/indicator (hidden when not checked) */
}
.wpcf7-form .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.wpcf7-form {
  /* Show the checkmark when checked */
}
.wpcf7-form input[type=checkbox]:checked ~ .checkmark:after {
  display: block;
}
.wpcf7-form {
  /* Style the checkmark/indicator */
}
.wpcf7-form .checkmark:after {
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  height: 10px;
  position: absolute;
  left: 8px;
  top: 3px;
  width: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.wpcf7-acceptance {
  display: inline-block;
  line-height: 24px;
  margin: 10px 0;
  position: relative;
}
.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7-acceptance input {
  margin: 0 10px 0 0;
  vertical-align: top;
}
.wpcf7-acceptance label {
  display: block;
}
.wpcf7-acceptance span {
  vertical-align: top;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.highlight {
  background-color: yellow;
  display: inline;
  padding: 2px 5px;
}

#practiceDocbuilder {
  margin: 0 auto;
  max-width: 1000px;
  padding: 50px 20px;
}
#practiceDocbuilder #titlePage {
  page-break-after: always;
}
#practiceDocbuilder #toc {
  page-break-after: always;
  margin: 70px 0;
}
#practiceDocbuilder #toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#practiceDocbuilder #toc td {
  border: 0;
  padding: 0 10px 0 0;
}
#practiceDocbuilder .subsection {
  display: block;
  padding-left: 2rem;
}
#practiceDocbuilder h2 .eh_numbering,
#practiceDocbuilder h3 .eh_numbering,
#practiceDocbuilder h4 .eh_numbering {
  display: inline-block;
  width: 50px;
}
#practiceDocbuilder .sub_subsection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#practiceDocbuilder .sub_subsection .eh_numbering {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
}
#practiceDocbuilder .sub_subsection .eh_content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 90%;
          flex: 1 1 90%;
}
#practiceDocbuilder .sectionPanel {
  margin-bottom: 50px;
}
#practiceDocbuilder .sectionPanel table {
  vertical-align: top;
  width: 100%;
}
#practiceDocbuilder #floatingNav {
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  position: fixed;
  top: 0;
  right: 0;
  width: 240px;
  z-index: 1500;
}
#practiceDocbuilder #floatingNav a {
  display: block;
}
#practiceDocbuilder #floatingNav ul {
  list-style: number outside;
  margin: 0 0 0 0.75rem;
  padding: 0;
}

@media only screen and (min-width: 1200px) {
  #nav2 {
    display: block;
    margin: 0 0 20px 0;
  }
  #nav2 .twelve {
    background: var(--colour-button);
  }
  #nav2 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  #nav2 ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
  }
  #nav2 ul li a {
    background: var(--colour-link);
    color: #fff;
    display: block;
    height: 40px;
    line-height: 40px;
    margin-right: 2px;
    padding: 0 30px;
    text-decoration: none;
  }
  #nav2 ul li a:hover {
    background: var(--colour-link-hover);
    color: #fff;
  }
  #nav2 ul li button.sub_nav {
    display: none;
  }
  #nav2 ul li .sub-menu {
    background: var(--colour-button);
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    display: none;
    padding: 5px 0;
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 200;
  }
  #nav2 ul li .sub-menu li {
    float: none;
  }
  #nav2 ul li .sub-menu li a {
    border: none;
    overflow: hidden;
    width: 180px;
  }
  #nav2 ul li.openSubnav .sub-menu {
    display: block;
  }
  #nav2 ul li.menu-item-has-children {
    position: relative;
    z-index: 400;
  }
  #nav2 ul li.menu-item-has-children a {
    padding-right: 30px;
  }
  #nav2 ul li.menu-item-has-children > a:after {
    background-image: url(images/icon-chev-down-white.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto 8px;
    content: "";
    display: inline-block;
    height: 15px;
    opacity: 1;
    position: absolute;
    right: 12px;
    top: 11px;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
    vertical-align: middle;
    width: 15px;
  }
  #nav2 a.mobile_handle {
    display: none;
  }
  #nav2 .openSubnav > a:after {
    opacity: 0;
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
  }
  .navclose {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  #nav2 {
    background: rgba(40, 40, 40, 0.95);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 100vh;
    padding: 20px 20px 100px 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: left;
    width: 100%;
    z-index: 1500;
  }
  #nav2 .navopen {
    display: block;
  }
  #nav2 ul {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 80px auto 0 auto;
    max-width: 300px;
    padding: 0;
  }
  #nav2 ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    position: relative;
    float: none;
    margin: 0;
    padding: 0;
  }
  #nav2 ul li a,
  #nav2 ul li a:link,
  #nav2 ul li a:visited {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 500;
    position: relative;
    float: none;
    padding: 10px 0;
    clear: both;
    text-decoration: none;
    text-transform: uppercase;
    -moz-osx-font-smoothing: grayscale;
  }
  #nav2 ul li a span,
  #nav2 ul li a:link span,
  #nav2 ul li a:visited span {
    display: block;
    font-size: 15px;
    opacity: 0.5;
  }
  #nav2 ul li button.sub_nav {
    background-color: transparent;
    background-image: url(images/icon-chev-down-white.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    border: 0;
    cursor: pointer;
    display: inline-block;
    font-size: 0;
    height: 35px;
    position: absolute;
    right: 0;
    top: 8px;
    margin: 0;
    padding: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: all 0.1s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    width: 35px;
    z-index: 500;
  }
  #nav2 ul li button.sub_nav.open {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 0.1s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  #nav2 ul li {
    /* Second Level */
  }
  #nav2 ul li ul {
    background: none;
    border: 0;
    display: block;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-transition: max-height 0.2s;
    transition: max-height 0.2s;
    width: 100%;
    z-index: 999999;
  }
  #nav2 ul li ul.show {
    max-height: 500px;
    opacity: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  #nav2 ul li ul li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  #nav2 ul li ul li:last-child {
    border-bottom: 0;
  }
  #nav2 ul li ul li a,
  #nav2 ul li ul li a:link,
  #nav2 ul li ul li a:visited {
    color: #aaa;
    padding: 10px 0 10px 20px;
  }
  #nav2 ul li ul li a:hover,
  #nav2 ul li ul li a:link:hover,
  #nav2 ul li ul li a:visited:hover {
    color: #fff;
  }
  #nav2 ul li ul.sub-menu ul.sub-menu {
    display: none;
  }
}