@charset "UTF-8";
/* 
	Client: 
	Author: Silk Pearce
*/
/* 

	normalize.css v1.1.3 | MIT License | git.io/normalize 

*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

html {
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

body {
  margin: 0;
}

a {
  text-decoration: none;
}

a:focus {
  outline: none;
}

a:active,
a:hover {
  outline: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

h6 {
  font-size: 0.67em;
  margin: 2.33em 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

/*
hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}
*/
mark {
  background: #ff0;
  color: #000;
}

p,
pre {
  margin: 1em 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:before,
q:after {
  content: "";
  content: none;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0 0 0 40px;
}

menu,
ol,
ul {
  padding: 0 0 0 40px;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

form {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
  *height: 13px;
  *width: 13px;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

.flexDemo {
  margin: 32px;
}
.flexDemo h2, .flexDemo h3, .flexDemo p {
  margin: 16px 0;
}
.flexDemo p {
  font-size: 1.3em;
}
.flexDemo h2 {
  color: #00a3ff;
}

.flexbox {
  width: 100%;
  display: flex;
}
@media screen and (max-width: 600px) {
  .flexbox {
    display: block;
  }
}
.flexbox .item {
  background: #607783;
  height: 140px;
  width: 140px;
  margin: 10px;
  color: #fff;
  padding: 12px;
}

.reOrder .item.one {
  order: 3;
}
.reOrder .item.two {
  order: 1;
}
.reOrder .item.three {
  order: 2;
}

.flexbox.directionRow {
  flex-direction: row;
}

.flexbox.directionReverse {
  flex-direction: row-reverse;
}

.flexbox.directionCol {
  flex-direction: column;
}

.flexbox.directionRevCol {
  flex-direction: column-reverse;
}

.flexbox.grow .item.one {
  flex-grow: 1;
}
.flexbox.grow .item.two {
  flex-grow: 2;
}
.flexbox.grow .item.three {
  flex-grow: 3;
}
.flexbox.grow .item.four {
  flex-grow: 4;
}
.flexbox.grow .item.five {
  flex-grow: 5;
}
.flexbox.grow .item.six {
  flex-grow: 6;
}

.flexbox.justify.spaceBetween {
  justify-content: space-between;
}

.flexbox.justify.spaceAround {
  justify-content: space-around;
}

.flexbox.justify.centre {
  justify-content: center;
}

.flexbox.justify.flexStart {
  justify-content: flex-start;
}

.flexbox.justify.flexEnd {
  justify-content: flex-end;
}

.flexbox.alignItems .item.one {
  height: 40px;
}
.flexbox.alignItems .item.two {
  height: 80px;
}
.flexbox.alignItems .item.three {
  height: 60px;
}

.alignStart {
  align-items: flex-start;
}

.alignEnd {
  align-items: flex-end;
}

.alignBase {
  align-items: baseline;
}

.alignCentre {
  align-items: center;
}

.alignStretch {
  align-items: stretch;
}

.alignSelf {
  align-self: center;
}

.alignContentStart {
  align-content: flex-start;
}

.alignContentEnd {
  align-content: flex-end;
  flex-wrap: wrap;
  height: 400px;
}

html {
  overflow-y: scroll;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

.centreWrap {
  width: 96%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2%;
}

.grid {
  display: flex;
}
.grid.gridCols {
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .grid {
    display: block;
  }
}

.unitPadding {
  padding: 15px;
}

.unit1 {
  width: 100%;
}

.unit2 {
  width: 50%;
}

.unit3 {
  width: 33.3333333333%;
}

.unit4 {
  width: 25%;
}

.unit5 {
  width: 20%;
}

.unit6 {
  width: 16.6666666667%;
}

.unit2-3 {
  width: 66.6666666667%;
}

.unit3-4 {
  width: 75%;
}

.unit2-5 {
  width: 40%;
}

.unit3-5 {
  width: 60%;
}

.unit4-5 {
  width: 80%;
}

.gridCols .unit2 {
  width: calc(50% - 10px);
}
.gridCols .unit3 {
  width: calc(33.3333333333% - 13.3333333333px);
}
.gridCols .unit4 {
  width: calc(25% - 15px);
}
.gridCols .unit5 {
  width: calc(20% - 16px);
}
.gridCols .unit6 {
  width: calc(16.6666666667% - 16.6666666667px);
}

@media screen and (max-width: 600px) {
  .unit1,
  .unit2,
  .unit3,
  .unit4,
  .unit5,
  .unit6,
  .unit2-3,
  .unit3-4,
  .unit2-5,
  .unit3-5,
  .unit4-5 {
    width: 100%;
  }
  .gridCols .unit1,
  .gridCols .unit2,
  .gridCols .unit3,
  .gridCols .unit4,
  .gridCols .unit5,
  .gridCols .unit6,
  .gridCols .unit2-3,
  .gridCols .unit3-4,
  .gridCols .unit2-5,
  .gridCols .unit3-5,
  .gridCols .unit4-5 {
    width: 100%;
  }
}
.tnGrid {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.tnGrid li {
  list-style: none;
  width: 24.25%;
  padding: 10px;
  margin: 10px 1% 0 0;
}
.tnGrid li:nth-child(4n) {
  margin-right: 0;
}

.gridDemo div {
  background-color: #ccc;
}
.gridDemo div:nth-child(odd) {
  background-color: #999;
}
.gridDemo div.unit1 {
  background-color: #fff;
}
.gridDemo div.unit1.header {
  background-color: #000;
  color: #fff;
  padding: 20px;
}

.thumbnailDemo li {
  background-color: #ccc;
}

/* 
	Layout

	Use the following pattern for class naming:

	sectionElement



*/
.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

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

a[data-filetype=image] {
  border-bottom: none;
}

hr {
  border: none;
  background-color: #607783;
  height: 1px;
  width: 100%;
  display: block;
  margin-bottom: 42px;
}

.socialMedia {
  padding: 0;
}
.socialMedia li {
  list-style: none;
  display: inline-block;
  width: 100px;
  margin-right: 22px;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.socialMedia li:last-of-type {
  margin-right: 0;
}
.socialMedia li:hover {
  opacity: 0.8;
  cursor: pointer;
}

table {
  background-color: #607783;
  width: 100%;
  text-align: left;
  vertical-align: top;
}
table thead {
  background-color: #607783;
}
table th {
  padding: 8px;
}
table td {
  padding: 8px;
}
table tr:nth-child(even) {
  background-color: #607783;
}
table tfoot td {
  background-color: #607783;
  color: #fff;
  font-size: 0.9em;
}

.rounded {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.circular {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

@font-face {
  font-family: "flexslider-icon";
  src: url("fonts/flexslider-icon.eot");
  src: url("fonts/flexslider-icon.eot?#iefix") format("embedded-opentype"), url("fonts/flexslider-icon.woff") format("woff"), url("fonts/flexslider-icon.ttf") format("truetype"), url("fonts/flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

.flexslider .slides img {
  width: 100%;
  display: block;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

.slides:after {
  content: " ";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .slides {
  display: block;
}

* html .slides {
  height: 1%;
}

.no-js .slides > li:first-child {
  display: block;
}

.flexslider {
  margin: 0 0 60px;
  background: #fff;
  position: relative;
}

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.flexslider .slides {
  zoom: 1;
}

.carousel li {
  margin-right: 5px;
}

.flex-direction-nav {
  *height: 0;
}

.flex-direction-nav a {
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.flex-direction-nav .flex-prev {
  left: -50px;
}

.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}

.flexslider:hover .flex-prev {
  opacity: 0.7;
  left: 10px;
}

.flexslider:hover .flex-next {
  opacity: 0.7;
  right: 10px;
}

.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
  opacity: 1;
}

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default;
}

.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 40px;
  display: inline-block;
  content: "\f001";
}

.flex-direction-nav a.flex-next:before {
  content: "\f002";
}

.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}

.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: "\f004";
}

.flex-pauseplay a:hover {
  opacity: 1;
}

.flex-pauseplay a.flex-play:before {
  content: "\f003";
}

.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: 0.7;
  cursor: pointer;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}
/* 
	Typography

*/
body {
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: rgb(60, 71, 79);
}
@media (max-width: 600px) {
  body {
    font-size: 18px;
  }
}

html, html a {
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale;
}

a {
  -webkit-transition: color 0.4s linear;
  -moz-transition: color 0.4s linear;
  -o-transition: color 0.4s linear;
  transition: color 0.4s linear;
  color: #666;
}

a:focus {
  outline: none;
}

p {
  font-size: 0.95em;
  line-height: 1.4em;
  margin-bottom: 1em;
  margin-top: 0;
}
p a {
  border-bottom: 1px solid #999;
  padding-bottom: 1px;
}
p a:hover {
  border-color: #0090d3;
}

h1 {
  font-size: 2.6rem;
  line-height: 1.2em;
  margin-top: 0;
  margin-bottom: 1em;
}

h2 {
  font-size: 2rem;
  line-height: 1.3em;
  margin-bottom: 0em;
  margin-top: 0em;
}

h3 {
  font-size: 1.6rem;
  line-height: 1.3em;
  margin-bottom: 0;
  margin-top: 0;
}

h4 {
  font-size: 1.4rem;
  line-height: 1.3em;
  margin-top: 0;
  margin-bottom: 0;
}

h5 {
  font-size: 1rem;
  line-height: 1.3em;
  margin-bottom: 0;
  margin-top: 0;
}

h6 {
  font-size: 0.9rem;
  line-height: 1.3em;
  margin-bottom: 0.6em;
}

ul {
  padding-left: 1em;
  margin-bottom: 0.6em;
  list-style: disc;
}

ol {
  padding-left: 1.2em;
  margin-bottom: 0.6em;
}

li {
  font-size: 0.9em;
  line-height: 1.3em;
  font-size: 0.95em;
  line-height: 1.4em;
}
li a {
  border-bottom: 1px solid #999;
}
li a:hover {
  border-color: #0090d3;
}

blockquote {
  position: relative;
}
blockquote:before {
  content: "“";
  position: absolute;
  top: -10px;
  left: -44px;
  font-size: 3em;
  font-weight: 700;
}

/*

	Use by adding
		@extend .arrow;

	to element ie

		li {

			@extend .arrow;

			}	

	*/
.arrow a {
  color: #0090d3;
  border-bottom: none;
  position: relative;
}
.arrow a:before {
  content: "";
  display: block;
  border: 5px solid transparent;
  border-left-color: #0090d3;
  width: 1px;
  height: 1px;
  position: absolute;
  top: 3px;
  left: -12px;
}
.arrow a:hover {
  color: rgb(0, 0, 0);
}
.arrow a:hover:before {
  border-left-color: rgb(0, 0, 0);
}

.mainHeader {
  position: fixed;
  -webkit-transition: background-color 0.4s linear;
  -moz-transition: background-color 0.4s linear;
  -o-transition: background-color 0.4s linear;
  transition: background-color 0.4s linear;
}
@media screen and (min-width: 600px) {
  .mainHeader.transformHeader {
    background-color: #0090d3;
  }
}

.menu {
  width: 38px;
  margin: 60px 0 0 60px;
}

.menu:hover {
  cursor: pointer;
}

.menu #top.animate rect {
  animation-name: animateTop;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}

.menu #middle.animate rect {
  animation-name: animateMiddle;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}

.menu #bottom.animate rect {
  animation-name: animateBottom;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
}

@keyframes animateTop {
  0% {
    width: 38px;
  }
  30% {
    width: 14px;
  }
  50% {
    width: 38px;
  }
}
@keyframes animateMiddle {
  0% {
    width: 38px;
  }
  20% {
    width: 38px;
  }
  50% {
    width: 14px;
  }
  70% {
    width: 38px;
  }
}
@keyframes animateBottom {
  0% {
    width: 22px;
  }
  40% {
    width: 22px;
  }
  60% {
    width: 8px;
  }
  80% {
    width: 22px;
  }
}
.close {
  width: 38px;
  position: relative;
  transform: rotate(45deg);
}

.close:hover {
  cursor: pointer;
}

#rectA rect {
  transform: translate(19px, 16px);
}

#rectB rect {
  transform: rotate(180deg) translate(57px, -22px);
  transform-origin: right top;
  /*-- transform: translate(19px, 13px) rotate(180deg); */
}

#rectC rect {
  transform-origin: right top;
  transform: rotate(90deg) translate(57px, 16px);
}

#rectD rect {
  transform-origin: left bottom;
  transform: rotate(-90deg) translate(19px, 54px);
}

.close .animate rect {
  animation-name: animate;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@keyframes animate {
  0% {
    width: 19px;
  }
  60% {
    width: 10px;
  }
  100% {
    width: 19px;
  }
}
/*

Futura PT Light
font-family: "futura-pt", sans-serif;
font-weight: 300;
font-style: normal;

Futura PT Light Oblique
font-family: "futura-pt", sans-serif;
font-weight: 300;
font-style: italic;

Futura PT Book
font-family: "futura-pt", sans-serif;
font-weight: 400;
font-style: normal;

Futura PT Book Oblique
font-family: "futura-pt", sans-serif;
font-weight: 400;
font-style: italic;

Futura PT Medium
font-family: "futura-pt", sans-serif;
font-weight: 500;
font-style: normal;

Futura PT Medium Oblique
font-family: "futura-pt", sans-serif;
font-weight: 500;
font-style: italic;

Futura PT Demi
font-family: "futura-pt", sans-serif;
font-weight: 600;
font-style: normal;

Futura PT Demi Oblique
font-family: "futura-pt", sans-serif;
font-weight: 600;
font-style: italic;

Futura PT Heavy
font-family: "futura-pt", sans-serif;
font-weight: 700;
font-style: normal;

Futura PT Heavy Oblique
font-family: "futura-pt", sans-serif;
font-weight: 700;
font-style: italic;

Futura PT Extra Bold
font-family: "futura-pt", sans-serif;
font-weight: 800;
font-style: normal;

Futura PT Extra Bold Oblique
font-family: "futura-pt", sans-serif;
font-weight: 800;
font-style: italic;

Futura PT Bold
font-family: "futura-pt-bold", sans-serif;
font-weight: 700;
font-style: normal;

Futura PT Bold Oblique
font-family: "futura-pt-bold", sans-serif;
font-weight: 700;
font-style: italic;

*/
html {
  height: 100%;
  height: calc(var(--vh, 1vh) * 100);
  overflow-y: auto;
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: none;
  background: rgb(225, 226, 226);
  overflow-x: hidden;
}

/*.contentWrapper.active {
	overflow: hidden;
}*/
.cyanBg {
  background-color: rgb(25, 193, 218);
}

.greyBg {
  background-color: rgb(225, 226, 226);
}

.blueBg {
  background-color: rgb(60, 71, 79);
}

/* Ensure elements load hidden before ScrollReveal runs */
.sr .scrollContent {
  visibility: hidden;
}

a {
  transition: all 0.6s ease-in-out;
}

p {
  margin-bottom: 0.8em;
}

figcaption {
  width: 23%;
  font-size: 0.7em;
  line-height: 1.2em;
}

h2 {
  line-height: 1.2em;
  margin-bottom: 0.5em;
}

.unit1.bgGrey {
  background: rgb(225, 226, 226);
}

.margin {
  padding: 50px 0;
}

.marginTop {
  padding-top: 50px;
}

.marginMixed {
  padding: 50px 0 100px;
}

.marginLrg {
  padding: 125px 0;
}

.marginLrgTop {
  padding: 125px 0 30px;
}

section {
  background: rgb(225, 226, 226);
  display: block;
  scroll-margin-top: 50px;
}

.centreWrap {
  width: 80%;
}
.centreWrap.margin {
  padding-left: 2%;
  padding-right: 2%;
}

.containers {
  z-index: 1;
  position: relative;
}

header.navBar {
  display: block;
  position: fixed;
  z-index: 20000;
  background: rgba(25, 193, 218, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: ease-in-out 0.4s;
}
header.navBar .mainLogo {
  margin: 25px auto;
  width: 350px;
}
header.navBar .mainLogo img {
  transition: ease-in-out 0.4s;
}
header.navBar .mainLogo a:hover img {
  transform: scale(1.05);
}
header.navBar nav#navWrap {
  align-self: flex-end;
}
header.navBar nav#navWrap #navToggle {
  position: absolute;
  display: block;
  height: 20px;
  width: 38px;
  z-index: 20002;
  top: 40%;
  right: 2%;
  transition: all 1s ease-in-out;
}
header.navBar nav#navWrap #navToggle .menu {
  margin: 0;
  padding: 0;
  z-index: 20002;
  opacity: 1;
  transition: ease-in-out 0.4s;
}
header.navBar nav#navWrap #navToggle .menu:hover {
  transform: scale(1.1);
}
header.navBar nav#navWrap #navToggle .menu rect {
  transition: ease-in-out 0.4s;
}
header.navBar nav#navWrap #navToggle.active .menu #top rect {
  fill: rgba(60, 71, 79, 0);
}
header.navBar nav#navWrap #navToggle.active .menu #bottom rect {
  fill: rgba(60, 71, 79, 0);
}
header.navBar nav#navWrap .mainNav.slideOn {
  width: 100%;
  position: fixed;
  right: 0;
  top: calc(var(--vh, 1vh) * -100);
  opacity: 0;
  transition: ease-in-out 2s;
  height: 100%;
  height: calc(var(--vh, 1vh) * 100);
  z-index: 20001;
}
header.navBar nav#navWrap .mainNav.slideOn.active {
  top: 0;
  opacity: 1;
}
header.navBar nav#navWrap .mainNav.slideOn ul {
  margin: 0;
  width: 100%;
  height: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background-color: rgba(25, 193, 218, 0.95);
  padding: 60px;
  overflow: auto;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
header.navBar nav#navWrap .mainNav.slideOn ul li {
  width: 100%;
  font-size: 12vh;
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 4px;
  -webkit-text-stroke: 3px rgb(255, 255, 255);
  text-stroke: 3px rgb(255, 255, 255);
  text-align: left;
  margin-bottom: 0;
}
header.navBar nav#navWrap .mainNav.slideOn ul li a {
  color: rgba(255, 255, 255, 0);
  border-bottom: 3px solid rgba(255, 255, 255, 0);
}
header.navBar nav#navWrap .mainNav.slideOn ul li a:hover, header.navBar nav#navWrap .mainNav.slideOn ul li a.selected {
  color: white;
  -webkit-text-stroke: 3px rgb(255, 255, 255);
  text-stroke: 3px rgb(255, 255, 255);
  border-bottom: 3px solid white;
}
header.navBar nav#navWrap .mainNav.slideOn ul li a.selected {
  cursor: default;
  border-bottom: 3px solid rgba(255, 255, 255, 0);
}

body.landing header.navBar {
  top: -101px;
}
body.landing header.navBar.transformHeader {
  top: 0px;
}
body.landing .hero {
  height: 500%;
  height: calc(var(--vh, 1vh) * 500);
}
body.landing .hero .scrollPrompt {
  position: absolute;
}
body.landing .hero .container {
  height: 500%;
  height: calc(var(--vh, 1vh) * 500);
  position: relative;
}
body.landing .hero .container .videoWrapper {
  position: fixed;
  width: 100%;
}
body.landing .hero .container .heroCover {
  width: 100%;
  height: 100%;
  height: 100svh;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  margin: 0;
  background-color: rgba(25, 193, 218, 0.8);
}
body.landing .hero .container .heroCover .heroLogo {
  position: relative;
}
body.landing .hero .heroUspContainer {
  padding-top: calc(var(--vh, 1vh) * 95);
}
body.landing .hero .heroUspContainer .heroUspCover {
  width: 100%;
  height: 100%;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  z-index: 50;
}
body.landing .hero .heroUspContainer .heroUspCover .heroUspText {
  width: 60%;
  position: relative;
}
@media screen and (max-width: 920px) {
  body.landing .hero .heroUspContainer .heroUspCover .heroUspText {
    width: 80%;
  }
}
body.landing .hero .heroUspContainer .heroUspCover .heroUspText hr {
  background-color: rgb(255, 255, 255);
  height: 2px;
  width: 20%;
  margin-bottom: 1.5em;
}
body.landing .hero .heroUspContainer .heroUspCover .heroUspText p {
  color: rgb(255, 255, 255);
  font-weight: 600;
  font-style: normal;
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.1em;
  margin: 0;
  padding: 0;
  text-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 920px) {
  body.landing .hero .heroUspContainer .heroUspCover .heroUspText p {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 600px) {
  body.landing .hero .heroUspContainer .heroUspCover .heroUspText p {
    font-size: 2.4rem;
  }
}

.hero {
  height: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background: none;
}
.hero .container {
  width: 100%;
  position: fixed;
  z-index: -1;
}
.hero .container img.full {
  height: 100%;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.hero .container .videoWrapper {
  height: 100%;
  height: calc(var(--vh, 1vh) * 100);
}
.hero .container .videoWrapper video {
  object-fit: cover;
}
.hero .scrollPrompt {
  width: 60px;
  position: fixed;
  bottom: 50px;
  left: calc(50% - 30px);
  display: block;
  z-index: 0;
  animation-name: bounce;
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-direction: normal;
}
@keyframes bounce {
  0% {
    bottom: 200px;
  }
  35% {
    bottom: 50px;
  }
  55% {
    bottom: 70px;
  }
  100% {
    bottom: 50px;
  }
}
.hero .scrollPrompt a {
  display: block;
}
.hero .scrollPrompt a:hover {
  transform: translateY(10px);
  opacity: 0.4;
}
.hero .scrollPrompt a img {
  display: block;
}

.intro .container {
  color: rgb(255, 255, 255);
}
.intro .container h1 {
  font-weight: 600;
  font-style: normal;
  text-align: left;
  font-size: 3.2rem;
  line-height: 0.9em;
  width: 100%;
  text-transform: uppercase;
  border-bottom: 1px solid rgb(255, 255, 255);
  margin-bottom: 0.4em;
  padding-bottom: 0.5em;
}
.intro .container h1 span {
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke: 1px white;
  text-stroke: 1px white;
}
.intro .container h1 br.tablet {
  display: none;
}
.intro .container p {
  font-size: 1.4rem;
  font-weight: 600;
}

hr {
  background-color: rgb(23, 171, 193);
  margin-bottom: 15px;
}

.grid {
  justify-content: space-between;
  color: rgb(23, 171, 193);
}
.grid h2 {
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 0.01em;
}
.grid h2 span {
  color: rgba(23, 171, 193, 0);
  -webkit-text-stroke: 1px #17abc1;
  text-stroke: 1px #17abc1;
}
.grid p {
  font-size: 0.9rem;
  font-weight: 600;
  font-style: normal;
}
.grid .contentBlockOne_colOne {
  width: 27%;
}
.grid .contentBlockOne_colTwo {
  width: 65%;
}
.grid .contentBlockOne_colFull {
  width: 100%;
}
.grid a.button {
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  letter-spacing: 0.02em;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.grid a.button:after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-image: url(../images/icons/button-arrow-right.svg);
  position: absolute;
  right: -17px;
  top: 4px;
  transition: all 0.3s ease-in-out;
}
.grid a.button:hover {
  border-bottom: 1px solid white;
}
.grid a.button:hover:after {
  right: -22px;
}
.grid.fitoutPlans {
  flex-direction: column;
  margin-bottom: 3em;
}
.grid.fitoutPlans .grid .unit2 {
  margin-right: 10%;
}
.grid.fitoutPlans .grid .unit2:last-of-type {
  margin-right: 0;
}
.grid.fitoutPlans .grid .unit2 img {
  mix-blend-mode: multiply;
}
.grid.fitoutPlans .grid .unit2 figcaption {
  width: 100%;
  font-weight: 600;
  padding-top: 1em;
}

.cyanBg .grid {
  color: rgb(255, 255, 255);
}
.cyanBg .grid h2 span {
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke: 1px white;
  text-stroke: 1px white;
}
.cyanBg .grid hr {
  background-color: rgb(255, 255, 255);
}

.fullWidthWrap a.imageWithText {
  width: 100%;
  display: flex;
  aspect-ratio: 16/10;
  /*&::before {
  	content: "";
  	display: block;
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	background-color: rgba($grey, .9);
  	opacity: 1;
  	transition: all 0.6s ease-in-out;

  }*/
}
.fullWidthWrap a.imageWithText.endLink {
  aspect-ratio: 16/5;
}
.fullWidthWrap a.imageWithText:hover .textOver h3 {
  border-bottom: 1px solid white;
}
.fullWidthWrap a.imageWithText:hover .textOver h3::after {
  right: -40px;
}
.fullWidthWrap a.imageWithText:hover img {
  -webkit-filter: opacity(40%);
  filter: opacity(40%);
}
.fullWidthWrap a.imageWithText:hover::before {
  opacity: 0;
}
.fullWidthWrap a.imageWithText img {
  transition: all 0.6s ease-in-out;
  object-fit: cover;
}
.fullWidthWrap a.imageWithText .textOver {
  width: 100%;
  padding: 15px 0 15px 5%;
  background-color: rgba(25, 193, 218, 0.9);
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}
.fullWidthWrap a.imageWithText .textOver h3 {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 2rem;
  line-height: 1.1em;
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke: 1px white;
  text-stroke: 1px white;
  align-self: flex-start;
  margin: 0;
  transition: all 0.6s ease-in-out;
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
.fullWidthWrap a.imageWithText .textOver h3::after {
  display: block;
  content: "";
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  background-image: url(../images/icons/right-arrow.svg);
  position: absolute;
  right: -35px;
  top: 5px;
  transition: all 0.3s ease-in-out;
}

.cta {
  padding-bottom: 0;
}
.cta .centreWrap .ctaBlock {
  text-align: left;
}
.cta .centreWrap .ctaBlock h4 {
  font-size: 3.2rem;
  font-family: "futura-pt", sans-serif;
  line-height: 1em;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke: 2px rgb(255, 255, 255);
  text-stroke: 2px rgb(255, 255, 255);
  padding: 50px 0 30px;
  border-bottom: solid 1px rgb(255, 255, 255);
  margin-bottom: 0.5em;
}
.cta .centreWrap .ctaBlock h4 span {
  color: rgb(255, 255, 255);
}
.cta .centreWrap .ctaBlock p {
  color: rgb(255, 255, 255);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0 0 30px;
}
.cta .centreWrap .contactBlock {
  padding-bottom: 50px;
  border-bottom: solid 1px rgb(255, 255, 255);
}
.cta .centreWrap .contactBlock .unit2-5 {
  width: 100%;
}
.cta .centreWrap .contactBlock .unit3-5 {
  width: 100%;
}
.cta .centreWrap .contactBlock .unit2-5, .cta .centreWrap .contactBlock .unit3-5 {
  float: left;
}
.cta .centreWrap .contactBlock .unit2-5 .agentLogoCol, .cta .centreWrap .contactBlock .unit3-5 .agentLogoCol {
  width: 150px;
  padding-right: 30px;
  float: left;
}
.cta .centreWrap .contactBlock .unit2-5 p, .cta .centreWrap .contactBlock .unit3-5 p {
  float: left;
  line-height: 1.3em;
  font-weight: 400;
  color: rgb(255, 255, 255);
}
.cta .centreWrap .contactBlock .unit2-5 p:first-of-type, .cta .centreWrap .contactBlock .unit3-5 p:first-of-type {
  margin-right: 40px;
}
.cta .centreWrap .contactBlock .unit2-5 p strong, .cta .centreWrap .contactBlock .unit3-5 p strong {
  font-weight: 600;
}
.cta .centreWrap .contactBlock .unit2-5 p a, .cta .centreWrap .contactBlock .unit3-5 p a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  border-bottom: 1px solid rgba(25, 193, 218, 0);
}
.cta .centreWrap .contactBlock .unit2-5 p a:hover, .cta .centreWrap .contactBlock .unit3-5 p a:hover {
  color: rgb(25, 193, 218);
  border-bottom: 1px solid #19c1da;
}

footer {
  background: rgb(60, 71, 79);
  color: rgb(255, 255, 255);
  text-align: left;
  padding: 25px 0 70px;
}
footer a {
  color: rgb(255, 255, 255);
  text-decoration: underline;
  border-bottom: none;
}
footer a:hover {
  color: rgb(25, 193, 218);
}
footer .termsBlock {
  padding: 25px 0 10px;
}
footer .termsBlock p {
  font-size: 0.6em;
  font-weight: 600;
  margin-bottom: 0.2em;
}
footer .termsBlock p:first-of-type {
  text-transform: uppercase;
}
footer .signOffBlock {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}
footer .signOffBlock .mantleLogo {
  display: flex;
  align-items: flex-start;
}
footer .signOffBlock .mantleLogo img {
  width: 54px;
}
footer .signOffBlock .mantleLogo p {
  padding-left: 25px;
  margin-bottom: 0;
}
footer .signOffBlock a {
  text-decoration: none;
  border-bottom: 1px solid rgba(25, 193, 218, 0);
}
footer .signOffBlock a:hover {
  border-bottom: 1px solid #19c1da;
}
footer .signOffBlock p {
  font-size: 0.8em;
  margin-bottom: 18px;
}
footer .signOffBlock .copywriteRow {
  text-align: right;
  align-self: flex-end;
}
footer .signOffBlock .copywriteRow p {
  font-size: 0.55em;
  font-weight: 600;
  margin-bottom: 0;
}
footer .signOffBlock .copywriteRow p strong {
  text-transform: uppercase;
}

.findUsBlock {
  display: flex;
  justify-content: left;
  padding-bottom: 50px;
}
.findUsBlock p {
  font-weight: 600;
  font-size: 1em;
  transition: all 0.6s ease-in-out;
  position: relative;
  text-align: left;
}
.findUsBlock p::before {
  content: "";
  display: block;
  position: absolute;
}
.findUsBlock p.address {
  margin-left: 20px;
}
.findUsBlock p.address::before {
  background: url("../images/icons/map_pin.svg");
  background-repeat: no-repeat;
  left: -20px;
  top: 2px;
  width: 20px;
  height: 20px;
}
.findUsBlock p.whatThreeWords {
  margin-left: 7%;
}
.findUsBlock p.whatThreeWords::before {
  background: url("../images/icons/whatThreeWords-icon.svg");
  background-repeat: no-repeat;
  left: -40px;
  top: 4px;
  width: 35px;
  height: 20px;
}
.findUsBlock p.directions {
  margin-left: 7%;
}
.findUsBlock p.directions::before {
  background: url("../images/icons/chevron-icon.svg");
  background-repeat: no-repeat;
  left: -40px;
  top: 4px;
  width: 35px;
  height: 20px;
}

.intro p.eyebrow {
  text-transform: uppercase;
  margin-bottom: 0.5em;
  font-size: 1.1em;
}
.intro p.eyebrow a {
  color: rgb(255, 255, 255);
  border-bottom: solid 1px rgba(255, 255, 255, 0);
}
.intro p.eyebrow a:hover {
  border-bottom: solid 1px white;
}

.map .googleMap {
  width: 100%;
  margin: 0;
  padding: 0;
}
.map .googleMap #map {
  height: 100%;
}

.map .findUsBlock {
  background: rgb(60, 71, 79);
  padding: 1em 12% 0.4em;
  justify-content: center;
}
.map .findUsBlock p {
  color: rgb(255, 255, 255);
}
.map .findUsBlock p a {
  color: rgb(255, 255, 255);
}
.map .findUsBlock p a:hover {
  color: rgb(25, 193, 218);
}

.distances .container {
  padding-right: 5%;
}
.distances .container:last-of-type {
  padding-right: 0;
}
.distances .container div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.distances .container div.headerRow p {
  align-self: baseline;
  font-size: 1em;
  font-weight: 600;
  color: rgb(255, 255, 255);
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  padding: 0;
}
.distances .container div p {
  color: rgb(255, 255, 255);
  align-self: baseline;
  margin-bottom: 0.5em;
  padding-bottom: 0em;
  padding-top: 0.5em;
}
.distances .container .detailRow {
  border-bottom: 1px solid rgb(255, 255, 255);
}
.distances .container .detailRow.let p {
  -webkit-text-stroke: 2px rgba(60, 71, 79, 0.2);
  text-stroke: 2px rgba(60, 71, 79, 0.2);
}

ul.amenities {
  list-style: none;
  margin: 1em 0 1em;
  padding: 0 0 1em 0;
  border-bottom: solid 1px rgb(23, 171, 193);
}
ul.amenities:last-of-type {
  border-bottom: none;
}
ul.amenities p {
  margin-bottom: 0;
  margin-left: 0;
}
ul.amenities li {
  margin: 0;
  font-weight: 400;
  color: rgb(23, 171, 193);
}

.logoCarousel .flickity-button {
  background: none !important;
}
.logoCarousel .flickity-prev-next-button.previous {
  left: -30px !important;
}
.logoCarousel .flickity-prev-next-button.next {
  right: -30px !important;
}
.logoCarousel .carousel-cell {
  width: 25%;
  padding: 0 6%;
}
.logoCarousel .carousel-cell.pageloaded {
  visibility: visible;
}
.logoCarousel .carousel-cell span {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  padding-bottom: 100%;
}
.logoCarousel .carousel-cell span img {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 1%;
  left: 1%;
  width: 99%;
  height: 99%;
  border: 0;
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

ul {
  list-style-type: square;
  padding-left: 0.8em;
}
ul p {
  margin-left: -1em;
}
ul li {
  color: rgb(23, 171, 193);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4em;
}
ul li::marker {
  color: rgb(25, 193, 218);
}

.flexslider {
  padding: 50px 0;
  background: none;
}
.flexslider .flex-control-nav {
  bottom: 0px;
  z-index: 2;
}
.flexslider .flex-control-nav.flex-control-paging li a {
  background: rgba(23, 171, 193, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid rgb(23, 171, 193);
}
.flexslider .flex-control-nav.flex-control-paging li a.flex-active {
  background: #17abc1;
}
.flexslider .flex-direction-nav a {
  opacity: 1;
}
.flexslider .flex-direction-nav a.flex-prev {
  left: -75px;
}
.flexslider .flex-direction-nav a.flex-next {
  right: -75px;
}
.flexslider.gallery {
  padding: 0;
  margin: 0;
  background: rgb(25, 193, 218);
  border-bottom: solid 5px rgb(25, 193, 218);
}
.flexslider.gallery ul.slides {
  height: 60vh;
}
.flexslider.gallery ul.slides li {
  height: 100%;
}
.flexslider.gallery ul.slides li img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.flexslider.gallery ul.slides li .flex-caption {
  position: absolute;
  bottom: 2%;
  left: 4%;
}
.flexslider.gallery ul.slides li .flex-caption p {
  color: rgb(255, 255, 255);
  text-shadow: 0px 0px 5px black;
}
.flexslider.gallery .flex-control-nav.flex-control-paging li a {
  background: rgba(255, 255, 255, 0);
  border: 1px solid rgb(255, 255, 255);
}
.flexslider.gallery .flex-control-nav.flex-control-paging li a.flex-active {
  background: white;
}
.flexslider.gallery ul.flex-direction-nav li {
  margin: 0;
}
.flexslider.gallery .flex-direction-nav a.flex-prev {
  left: 20px;
}
.flexslider.gallery .flex-direction-nav a.flex-prev:before {
  content: url("../images/icons/leftarrow-white.svg");
  width: 40px;
  height: 65px;
}
.flexslider.gallery .flex-direction-nav a.flex-next {
  right: 20px;
}
.flexslider.gallery .flex-direction-nav a.flex-next:before {
  content: url("../images/icons/rightarrow-white.svg");
  width: 40px;
  height: 65px;
}
.flexslider.gallery:hover .flex-prev {
  left: 20px;
}
.flexslider.gallery:hover .flex-next {
  right: 20px;
}
.flexslider ul {
  margin: 0;
  padding: 0;
}
.flexslider ul li::marker {
  display: none;
}
.flexslider ul li .areaCol {
  width: 20%;
  float: left;
}
.flexslider ul li .areaCol div {
  border-bottom: solid 1px rgb(23, 171, 193);
  padding: 0.3em 0;
}
.flexslider ul li .areaCol div:last-of-type {
  border-bottom: none;
}
.flexslider ul li .areaCol div.let p {
  color: rgba(0, 0, 0, 0.35);
}
.flexslider ul li .areaCol div h4 {
  font-size: 6em;
  line-height: 1em;
  margin: 0;
  margin-bottom: 0.1em;
  color: #17abc1;
  font-style: normal;
}
.flexslider ul li .areaCol div p {
  font-size: 1.3em;
  margin-bottom: 0;
  line-height: 1.2em;
  padding: 0.4em 0;
  font-weight: 400;
  color: rgb(23, 171, 193);
  margin-left: 0;
}
.flexslider ul li .areaCol div p strong {
  font-style: normal;
  font-weight: 600;
}
.flexslider ul li .areaCol .footerRow p + p {
  margin-top: 1em;
  font-size: 0.8em;
  font-weight: 600;
}
.flexslider ul li .planCol {
  width: 75%;
  margin-left: 5%;
  float: left;
  padding: 1em 7% 0;
}
.flexslider .flex-direction-nav a {
  border: none;
  width: 50px;
  height: 80px;
}
.flexslider .flex-direction-nav a.flex-next:before {
  content: url("../images/icons/rightarrow.svg");
}
.flexslider .flex-direction-nav a.flex-prev:before {
  content: url("../images/icons/leftarrow.svg");
}
.flexslider .flex-direction-nav .flex-prev {
  left: -150px;
}
.flexslider .flex-direction-nav .flex-next {
  right: -150px;
}
.flexslider:hover .flex-prev {
  left: -75px;
}
.flexslider:hover .flex-next {
  right: -75px;
}

.intro .container.heroType h1 {
  font-size: 5.5em;
  font-family: "futura-pt", sans-serif;
  line-height: 1em;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke: 3px rgb(60, 71, 79);
  text-stroke: 3px rgb(60, 71, 79);
  padding: 50px 0 60px;
  margin-bottom: 0;
}
.intro .container.heroType h2 {
  text-align: center;
  color: rgb(25, 193, 218);
  font-size: 1.2rem;
  font-weight: 600;
}
.intro .container.contactBlock {
  padding-top: 40px;
  padding-bottom: 50px;
}
.intro .container.contactBlock .unit2-5 {
  width: 35%;
}
.intro .container.contactBlock .unit3-5 {
  width: 65%;
}
.intro .container.contactBlock .unit2-5, .intro .container.contactBlock .unit3-5 {
  float: left;
}
.intro .container.contactBlock .unit2-5 .agentLogoCol, .intro .container.contactBlock .unit3-5 .agentLogoCol {
  width: 150px;
  padding-right: 30px;
  float: left;
}
.intro .container.contactBlock .unit2-5 .agentPhotoCol, .intro .container.contactBlock .unit3-5 .agentPhotoCol {
  float: left;
  width: 40%;
}
.intro .container.contactBlock .unit2-5 .agentPhotoCol p, .intro .container.contactBlock .unit3-5 .agentPhotoCol p {
  line-height: 1.3em;
  font-weight: 400;
}
.intro .container.contactBlock .unit2-5 .agentPhotoCol p:first-of-type, .intro .container.contactBlock .unit3-5 .agentPhotoCol p:first-of-type {
  margin-right: 20px;
}
.intro .container.contactBlock .unit2-5 .agentPhotoCol p strong, .intro .container.contactBlock .unit3-5 .agentPhotoCol p strong {
  font-weight: 600;
}
.intro .container.contactBlock .unit2-5 .agentPhotoCol p a, .intro .container.contactBlock .unit3-5 .agentPhotoCol p a {
  text-decoration: none;
  border-bottom: 1px solid rgba(60, 71, 79, 0);
}
.intro .container.contactBlock .unit2-5 .agentPhotoCol p a:hover, .intro .container.contactBlock .unit3-5 .agentPhotoCol p a:hover {
  border-bottom: 1px solid #3c474f;
}
.intro .container.contactBlock .unit2-5 .agentPhotoCol.spanTwo, .intro .container.contactBlock .unit3-5 .agentPhotoCol.spanTwo {
  width: 21.7%;
  margin-right: 13%;
}
.intro .container.contactBlock .unit2-5 .agentPhotoCol.spanTwo:last-of-type, .intro .container.contactBlock .unit3-5 .agentPhotoCol.spanTwo:last-of-type {
  margin-right: 0;
}

.unit1.terms {
  padding: 50px 0 0;
}
.unit1.terms .grid .contentBlock.unit3 {
  margin-right: 7%;
}
.unit1.terms .grid .contentBlock.unit3:last-of-type {
  margin-right: 0;
}
.unit1.terms .grid .contentBlock.unit3 h3 {
  font-size: 1.2rem;
  color: rgb(25, 193, 218);
  margin-bottom: 0.3em;
}
.unit1.terms .grid .contentBlock.unit3 p {
  font-weight: 600;
}

/* ScrollTextBlocks */
.container.imageWithText {
  position: relative;
  padding-top: 0;
}
.container.imageWithText img.bottom {
  object-position: 0 75%;
}
.container.imageWithText img.middle {
  object-position: 0 50%;
}
.container.imageWithText img.top {
  object-position: 0 25%;
}
.container.imageWithText .imageWrapper {
  position: relative;
}
.container.imageWithText .imageWrapper figcaption {
  font-weight: 600;
  position: absolute;
  bottom: 4%;
  left: 3%;
  width: 100%;
}
.container.imageWithText .scrollTextBlock {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: difference;
  transform: translate3d(0, 0, 0);
}
.container.imageWithText .scrollTextBlock div {
  height: 33%;
  margin-bottom: 10px;
  font-size: 12vw;
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke: 3px rgb(255, 255, 255);
  text-stroke: 3px rgb(255, 255, 255);
}
.container.imageWithText .scrollTextBlock #scrollTextBlockOne {
  margin-left: -100px;
  align-self: flex-start;
}
.container.imageWithText .scrollTextBlock #scrollTextBlockTwo {
  align-self: center;
}
.container.imageWithText .scrollTextBlock #scrollTextBlockThree {
  align-self: flex-end;
  padding-top: 20px;
  margin-right: -100px;
}
.container.imageWithText .scrollTextBlock #scrollTextBlockFour {
  margin-left: -100px;
  margin-top: -90px;
  align-self: flex-start;
}
.container.imageWithText .scrollTextBlock #scrollTextBlockFive {
  align-self: flex-end;
  align-content: center;
  margin-right: -100px;
}
.container.imageWithText .scrollTextBlock #scrollTextBlockSix {
  align-self: flex-end;
  margin-right: 50px;
  padding-top: 70px;
}
.container.imageWithText .scrollTextBlock #scrollTextBlockSeven {
  margin-top: -100px;
  margin-left: -100px;
  align-self: flex-start;
}
.container.imageWithText .scrollTextBlock #scrollTextBlockEight {
  align-self: center;
  margin-right: -400px;
}
.container.imageWithText .scrollTextBlock #scrollTextBlockNine {
  align-self: flex-start;
  padding-top: 40px;
  margin-left: 20px;
}
.container.imageWithText .scrollTextBlock #scrollTextBlockTen {
  margin-top: -100px;
  align-self: center;
}
.container.imageWithText .scrollTextBlock #scrollTextBlockEleven {
  align-self: flex-end;
  margin-right: -100px;
}
.container.imageWithText .scrollTextBlock #scrollTextBlockTwelve {
  align-self: flex-start;
  padding-top: 80px;
  margin-left: -100px;
}
.container.imageWithText .scrollTextBlock #scrollTextBlockThirteen {
  margin-top: -100px;
  margin-left: 100px;
  align-self: center;
}
.container.imageWithText .scrollTextBlock #scrollTextBlockFourteen {
  align-self: flex-start;
  margin-left: -100px;
}
.container.imageWithText .scrollTextBlock #scrollTextBlockFifteen {
  align-self: flex-end;
  padding-top: 80px;
  margin-right: -90px;
}
.container.imageWithText .scrollTextBlock #scrollTextBlockSixteen {
  margin-top: -100px;
  margin-right: -100px;
  align-self: flex-end;
}
.container.imageWithText .scrollTextBlock #scrollTextBlockSeventeen {
  align-self: flex-start;
  margin-left: -100px;
}
.container.imageWithText .scrollTextBlock #scrollTextBlockEighteen {
  align-self: flex-end;
  padding-top: 80px;
  margin-right: 80px;
}

/* Media queries */
@media screen and (max-width: 1200px) {
  .intro .container.contactBlock .unit3-5 .agentPhotoCol.spanTwo p {
    word-wrap: break-word;
  }
}
@media screen and (max-width: 1000px) {
  .intro .container.contactBlock .unit2-5 {
    width: 38%;
  }
  .intro .container.contactBlock .unit3-5 {
    width: 55%;
  }
  .intro .container.contactBlock .unit3-5 .agentPhotoCol.spanTwo {
    margin-right: 3%;
    width: 28.7%;
  }
}
@media screen and (max-width: 920px) {
  .intro .container.contactBlock.grid, .centreWrap.grid {
    flex-direction: column;
  }
  .intro .container h1 br.tablet {
    display: inline;
  }
  .centreWrap.grid .contentBlockOne_colOne, .centreWrap.grid .contentBlockOne_colTwo {
    width: 100%;
  }
  .centreWrap.grid .contentBlockOne_colOne {
    padding-bottom: 1em;
  }
  .centreWrap.grid.flexReverse {
    flex-direction: column-reverse;
  }
  .intro .container.contactBlock .unit2-5, .intro .container.contactBlock .unit3-5 {
    width: 100%;
    margin-bottom: 20px;
  }
  .intro .container.contactBlock .unit2-5 .agentLogoCol, .intro .container.contactBlock .unit3-5 .agentLogoCol, .intro .container.contactBlock .unit2-5 .agentPhotoCol, .intro .container.contactBlock .unit3-5 .agentPhotoCol {
    text-align: center;
    padding-right: 0;
    float: none;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .intro .container.contactBlock .unit2-5 .agentPhotoCol.spanTwo, .intro .container.contactBlock .unit3-5 .agentPhotoCol.spanTwo {
    text-align: center;
    margin: 0 auto;
    width: 100%;
  }
  .intro .container.contactBlock .unit2-5 .agentPhotoCol.spanTwo img, .intro .container.contactBlock .unit3-5 .agentPhotoCol.spanTwo img {
    width: 40%;
  }
  .intro .container.contactBlock .unit2-5 .agentLogoCol, .intro .container.contactBlock .unit3-5 .agentLogoCol {
    width: 55%;
  }
  .unit1.distances, .unit1.distances .unit3 {
    width: 100%;
  }
  .distances .container {
    padding: 30px 0 0px;
    font-size: 1em;
    color: rgb(60, 71, 79);
    -webkit-text-stroke: inherit;
    text-stroke: inherit;
  }
  .distances .container:last-of-type {
    padding-bottom: 30px;
  }
  .distances .container div h3, .distances .container .headerRow p {
    color: rgb(25, 193, 218);
    -webkit-text-stroke: inherit;
    text-stroke: inherit;
  }
  .distances .container .headerRow p {
    font-size: 1em;
  }
  .distances .container .detailRow.let p {
    color: rgba(60, 71, 79, 0.3);
    -webkit-text-stroke: inherit;
    text-stroke: inherit;
  }
  .amenitiesWrap {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  .amenitiesWrap ul.amenities {
    width: 33.33333%;
    margin-top: 0;
  }
  .amenitiesWrap ul.amenities:last-of-type {
    border-bottom: solid 1px rgb(23, 171, 193);
  }
  .amenitiesWrap ul.amenities p {
    margin-left: 0;
  }
  .map .findUsBlock {
    padding: 1em 6% 0.4em;
  }
  .findUsBlock {
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
  }
  .findUsBlock p {
    text-align: center;
  }
  .findUsBlock p.address::before {
    left: -20px;
  }
  .grid.fitoutPlans {
    margin-bottom: 1em;
  }
  .grid.fitoutPlans .grid {
    flex-direction: column;
  }
  .grid.fitoutPlans .grid .unit2 {
    margin-right: 0;
    margin-bottom: 2em;
    margin-top: 1em;
    width: 100%;
  }
  .grid.fitoutPlans .grid .unit2:last-of-type {
    margin-top: 1em;
  }
  .grid.fitoutPlans .grid .unit2 figcaption {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 600px) {
  .centreWrap {
    width: 90%;
    padding: 0;
  }
  .grid {
    display: flex;
  }
  .margin {
    padding: 30px 0;
  }
  .marginMixed {
    padding: 50px 0 70px;
  }
  .marginLrg {
    padding: 60px 0 60px;
  }
  .marginTop {
    padding: 30px 0 0;
  }
  .marginLrgTop {
    padding: 70px 0 0px;
  }
  header.navBar .mainLogo {
    width: 50%;
    margin: 15px auto;
  }
  header.navBar nav#navWrap #navToggle {
    top: 32%;
    right: 3.5%;
    width: 30px;
  }
  header.navBar nav#navWrap #navToggle .menu {
    width: 30px;
  }
  header.navBar nav#navWrap .mainNav.slideOn ul {
    padding: 30px;
  }
  header.navBar nav#navWrap .mainNav.slideOn ul li {
    font-size: 13vw;
    -webkit-text-stroke: 2px rgb(255, 255, 255);
    text-stroke: 2px rgb(255, 255, 255);
  }
  header.navBar nav#navWrap .mainNav.slideOn ul li a {
    border-bottom: 2px solid rgba(255, 255, 255, 0);
  }
  header.navBar nav#navWrap .mainNav.slideOn ul li a:hover, header.navBar nav#navWrap .mainNav.slideOn ul li a.selected {
    -webkit-text-stroke: 2px rgb(255, 255, 255);
    text-stroke: 2px rgb(255, 255, 255);
    border-bottom: 2px solid white;
  }
  header.navBar nav#navWrap .mainNav.slideOn ul li a.selected {
    border-bottom: 2px solid rgba(255, 255, 255, 0);
  }
  body.landing .hero .heroCover .heroLogo {
    width: 80%;
  }
  .intro .container.heroType h1 {
    font-size: 3rem;
    -webkit-text-stroke: 2px rgb(60, 71, 79);
    text-stroke: 2px rgb(60, 71, 79);
    padding: 0px 0 60px;
    margin-bottom: 0;
  }
  .intro .container h1 {
    font-size: 2.2em;
  }
  .intro .container p {
    font-size: 1.2em;
  }
  .grid p {
    font-size: 1em;
  }
  .grid p a.button {
    font-size: 1em;
  }
  .grid p a.button:after {
    width: 8px;
    height: 14px;
    top: 5px;
  }
  figcaption {
    font-size: 0.9em;
  }
  .fullWidthWrap {
    flex-direction: column;
  }
  .fullWidthWrap a.imageWithText {
    height: 200px;
  }
  .fullWidthWrap a.imageWithText .textOver h3 {
    font-size: 2.2em;
    -webkit-text-stroke: 1px solid rgba rgb(255, 255, 255), 1;
    text-stroke: 1px solid rgba rgb(255, 255, 255), 1;
  }
  .fullWidthWrap a.imageWithText .textOver h3::after {
    width: 27px;
    height: 27px;
    top: 8px;
  }
  .unit1 .centreWrap.grid {
    flex-direction: column;
  }
  .unit1 .centreWrap.grid.flexReverse {
    flex-direction: column-reverse;
    padding-top: 2em;
  }
  .unit1 .centreWrap.grid .contentBlockOne_colOne, .unit1 .centreWrap.grid .contentBlockOne_colTwo {
    width: 100%;
    padding: 2% 0;
  }
  .unit1 .centreWrap.grid .contentBlockOne_colOne figcaption, .unit1 .centreWrap.grid .contentBlockOne_colTwo figcaption {
    width: 60%;
  }
  .cta .centreWrap .ctaBlock h4 {
    font-size: 2.5rem;
    -webkit-text-stroke: 1px rgb(255, 255, 255);
    text-stroke: 1px rgb(255, 255, 255);
    padding: 30px 0 20px;
    text-align: center;
  }
  .cta .centreWrap .ctaBlock p {
    text-align: center;
    font-size: 1rem;
    padding-bottom: 10px;
  }
  .cta .centreWrap .contactBlock .unit2-5, .cta .centreWrap .contactBlock .unit3-5 {
    width: 100%;
  }
  .cta .centreWrap .contactBlock .unit2-5 .agentLogoCol, .cta .centreWrap .contactBlock .unit3-5 .agentLogoCol {
    text-align: center;
    padding-right: 0;
    float: none;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .cta .centreWrap .contactBlock .unit2-5 .agentLogoCol {
    margin-top: 1em;
  }
  .cta .centreWrap .contactBlock .unit2-5 p:first-of-type, .cta .centreWrap .contactBlock .unit3-5 p:first-of-type {
    margin-right: 0;
  }
  .container.grid.contactBlock {
    flex-direction: column;
    align-items: center;
    padding-bottom: 25px;
  }
  .container.grid.contactBlock p {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 20px;
  }
  footer {
    padding-bottom: 30px;
  }
  footer .termsBlock {
    text-align: center;
  }
  footer .signOffBlock {
    flex-direction: column;
  }
  footer .signOffBlock .mantleLogo {
    width: 100%;
    justify-content: center;
  }
  footer .signOffBlock .mantleLogo p {
    font-size: 0.7em;
  }
  footer .signOffBlock .mantleLogo img {
    width: 48px;
  }
  footer .signOffBlock .copywriteRow {
    padding-top: 1.4em;
    text-align: left;
    align-self: center;
    text-align: center;
  }
  .logoCarousel .carousel-cell {
    width: 33.3333%;
  }
  .flexslider ul li .areaCol {
    width: 100%;
  }
  .flexslider ul li .areaCol div p {
    line-height: 1.1em;
    padding: 0.2em 0;
  }
  .flexslider ul li .planCol {
    width: 100%;
    margin-left: 0;
    padding: 0;
  }
  .planWrapper {
    display: flex;
    flex-direction: column-reverse;
  }
  .flexslider ul li .areaCol div h4 {
    font-size: 5em;
    padding: 0;
    margin: 0px 0px 0em;
  }
  .flexslider {
    margin: 0 0 0px;
    padding: 50px 0 20px;
  }
  .flexslider .flex-direction-nav a.flex-prev {
    left: 0px;
  }
  .flexslider .flex-direction-nav a.flex-next {
    left: 35px;
  }
  .flexslider:hover .flex-prev {
    left: 0px;
  }
  .flexslider:hover .flex-next {
    left: 35px;
  }
  .flexslider a {
    top: 150px;
  }
  .flexslider.gallery {
    /*.flex-direction-nav a {
    	top: 50%;
    	}

    .flex-prev {
    	left: 20px;
    }

    .flex-next {
    	left: initial;
    	right: 20px;
    }*/
  }
  .flexslider.gallery ul.flex-direction-nav li {
    display: none;
  }
  .flexslider.gallery ul.slides {
    height: calc(var(--vh, 1vh) * 30);
  }
  .flexslider.gallery ul.slides li .flex-caption {
    width: 100%;
    left: 0;
    bottom: 6%;
    padding: 0 5%;
    text-align: center;
  }
  .intro .container.contactBlock .unit2-5, .intro .container.contactBlock .unit3-5 {
    width: 100%;
    margin-bottom: 20px;
  }
  .intro .container.contactBlock .unit2-5 .agentLogoCol, .intro .container.contactBlock .unit3-5 .agentLogoCol, .intro .container.contactBlock .unit2-5 .agentPhotoCol, .intro .container.contactBlock .unit3-5 .agentPhotoCol {
    text-align: center;
    padding-right: 0;
    float: none;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .intro .container.contactBlock .unit2-5 .agentPhotoCol.spanTwo, .intro .container.contactBlock .unit3-5 .agentPhotoCol.spanTwo {
    text-align: center;
    margin: 0 auto;
    width: 100%;
  }
  .intro .container.contactBlock .unit2-5 .agentPhotoCol.spanTwo img, .intro .container.contactBlock .unit3-5 .agentPhotoCol.spanTwo img {
    width: 40%;
  }
  .intro .container.contactBlock .unit2-5 .agentLogoCol, .intro .container.contactBlock .unit3-5 .agentLogoCol {
    width: 55%;
  }
  .unit1.terms {
    padding: 25px 0 0;
  }
  .contentBlock.unit3 hr {
    display: none;
  }
  .container.imageWithText .scrollTextBlock div {
    font-size: 14vw;
    -webkit-text-stroke: 2px rgb(255, 255, 255);
    text-stroke: 2px rgb(255, 255, 255);
  }
  .container.imageWithText .scrollTextBlock #scrollTextBlockOne {
    margin-left: -15px;
  }
  .container.imageWithText .scrollTextBlock #scrollTextBlockTwo {
    align-self: center;
  }
  .container.imageWithText .scrollTextBlock #scrollTextBlockThree {
    align-self: flex-end;
    padding-top: 0px;
    margin-right: -15px;
  }
  .container.imageWithText .scrollTextBlock #scrollTextBlockFour {
    margin-left: -15px;
    margin-top: -60px;
  }
  .container.imageWithText .scrollTextBlock #scrollTextBlockFive {
    margin-right: -20px;
  }
  .container.imageWithText .scrollTextBlock #scrollTextBlockSix {
    margin-right: 60px;
    padding-top: 30px;
  }
  .container.imageWithText .scrollTextBlock #scrollTextBlockSeven {
    margin-top: -50px;
    margin-left: -15px;
    align-self: flex-start;
  }
  .container.imageWithText .scrollTextBlock #scrollTextBlockEight {
    align-self: center;
    margin-right: -90px;
  }
  .container.imageWithText .scrollTextBlock #scrollTextBlockNine {
    align-self: flex-start;
    margin-top: 0px;
    margin-left: 0px;
  }
  .container.imageWithText .scrollTextBlock #scrollTextBlockTen {
    margin-top: -30px;
    align-self: center;
    margin-left: -30px;
  }
  .container.imageWithText .scrollTextBlock #scrollTextBlockEleven {
    align-self: flex-end;
    margin-right: -20px;
  }
  .container.imageWithText .scrollTextBlock #scrollTextBlockTwelve {
    align-self: flex-start;
    padding-top: 40px;
    margin-left: -15px;
  }
  .container.imageWithText .scrollTextBlock #scrollTextBlockThirteen {
    margin-top: -40px;
    align-self: center;
  }
  .container.imageWithText .scrollTextBlock #scrollTextBlockFourteen {
    align-self: flex-start;
    margin-top: 10px;
    margin-left: -20px;
  }
  .container.imageWithText .scrollTextBlock #scrollTextBlockFifteen {
    align-self: flex-end;
    padding-top: 40px;
    margin-right: -15px;
  }
  .container.imageWithText .scrollTextBlock #scrollTextBlockSixteen {
    margin-top: -40px;
    margin-right: -15px;
    align-self: flex-end;
  }
  .container.imageWithText .scrollTextBlock #scrollTextBlockSeventeen {
    align-self: flex-start;
    margin-left: -10px;
  }
  .container.imageWithText .scrollTextBlock #scrollTextBlockEighteen {
    align-self: flex-end;
    padding-top: 30px;
    margin-right: 10px;
  }
  .amenitiesWrap {
    flex-direction: column;
  }
  .amenitiesWrap ul.amenities {
    width: 100%;
  }
  .imageWrapper figcaption {
    font-size: 0.65em;
  }
}
@media screen and (max-width: 420px) {
  .fullWidthWrap a.imageWithText .textOver h3, .fullWidthWrap a.imageWithText:last-of-type .textOver:hover h3 {
    -webkit-text-stroke: 1px rgb(25, 193, 218);
    text-stroke: 1px rgb(25, 193, 218);
    border-bottom: solid 1px rgb(25, 193, 218);
  }
  .fullWidthWrap a.imageWithText .textOver:hover h3, .fullWidthWrap a.imageWithText:last-of-type .textOver h3 {
    -webkit-text-stroke: 1px rgb(255, 255, 255);
    text-stroke: 1px rgb(255, 255, 255);
    border-bottom: solid 1px rgb(255, 255, 255);
  }
}
.cta .centreWrap .contactBlock .unit3-5 .flexCol {
  display: flex;
  flex-direction: row;
}

@media screen and (max-width: 1380px) {
  .cta .centreWrap .contactBlock .unit3-5 .flexCol {
    flex-direction: column;
  }
}
@media screen and (max-width: 850px) {
  .cta .centreWrap .contactBlock .unit3-5 {
    display: flex;
    flex-direction: column;
  }
  .agentLogoCol, .cta .centreWrap .contactBlock .unit3-5 .agentLogoCol {
    padding-bottom: 15px;
  }
}
