@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 only 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 only 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 only 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;
}

.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;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons

@if $slick-font-family == "slick" {
    @font-face {
        font-family: "slick";
        src: slick-font-url("slick.eot");
        src: slick-font-url("slick.eot?#iefix") format("embedded-opentype"), slick-font-url("slick.woff") format("woff"), slick-font-url("slick.ttf") format("truetype"), slick-font-url("slick.svg#slick") format("svg");
        font-weight: normal;
        font-style: normal;
    }
}
 */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  height: 20px;
  width: 20px;
  /*    
      &:before {
          font-family: $slick-font-family;
          font-size: 20px;
          line-height: 1;
          color: $slick-arrow-color;
          opacity: $slick-opacity-default;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
  		}
  */
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  color: transparent;
  opacity: 0.6;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev {
  left: -25px;
  background-image: url(../images/icons/arrow-left.svg);
  /*    
      [dir="rtl"] & {
          left: auto;
          right: -25px;
      }
      &:before {
          //content: $slick-prev-character;
          [dir="rtl"] & {
              //content: $slick-next-character;
          }
      }
  */
}

.slick-next {
  right: -25px;
  background-image: url(../images/icons/arrow-right.svg);
  /*   
      [dir="rtl"] & {
          left: -25px;
          right: auto;
      }
      &:before {
         // content: $slick-next-character;
          [dir="rtl"] & {
              //content: $slick-prev-character;
          }
      }

  */
}

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  background-color: #0090d3;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/*

Icon fonts


*/
@font-face {
  font-family: "icons";
  src: url("../fonts/icons.eot?-52mjd0");
  src: url("../fonts/icons.eot?#iefix-52mjd0") format("embedded-opentype"), url("../fonts/icons.woff?-52mjd0") format("woff"), url("../fonts/icons.ttf?-52mjd0") format("truetype"), url("../fonts/icons.svg?-52mjd0#icons") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"] {
  font-family: "icons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-small-arrow:before {
  content: "\e60e";
}

.icon-magnifying-glass-disc:before {
  content: "\e60c";
}

.icon-plus-disc:before {
  content: "\e604";
}

.icon-plus:before {
  content: "\e60d";
}

.icon-document:before {
  content: "\e60f";
}

.icon-magnifying-glass:before {
  content: "\e610";
}

.icon-tick-disc:before {
  content: "\e60b";
}

.icon-menu:before {
  content: "\e60a";
}

.icon-right-arrowhead-disc:before {
  content: "\e600";
}

.icon-right-arrowhead:before {
  content: "\e601";
}

.icon-right-arrow:before {
  content: "\e602";
}

.icon-right-arrow-disc:before {
  content: "\e603";
}

.icon-facebook:before {
  content: "\e605";
}

.icon-youtube:before {
  content: "\e606";
}

.icon-twitter:before {
  content: "\e607";
}

.icon-pinterest:before {
  content: "\e608";
}

.icon-linkedin:before {
  content: "\e609";
}

span.iconLabel {
  display: block;
  text-indent: -3000px;
}

/* Hover effects */
.hoverEffects h3 {
  margin: 1em 0;
  font-size: 1em;
}
.hoverEffects p {
  line-height: 1.6em;
  font-size: 1.4em;
}
.hoverEffects p a {
  border: none;
  cursor: pointer;
  color: #36bcfa;
}

.hoverEffects-1 a {
  margin: 0;
  padding: 0;
  position: relative;
}
.hoverEffects-1 a:before, .hoverEffects-1 a:after {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 0px;
  height: 3px;
  margin: 0;
  transition: width 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition-duration: 0.3s;
  opacity: 0;
  background-color: red;
}
.hoverEffects-1 a:after {
  left: 0;
  background-color: blue;
}
.hoverEffects-1 a:hover:before, .hoverEffects-1 a:hover:after {
  width: 100%;
  opacity: 1;
}

.hoverEffects-2 a {
  margin: 0;
  padding: 0;
  position: relative;
}
.hoverEffects-2 a:before, .hoverEffects-2 a:after {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 0px;
  height: 3px;
  margin: 0;
  transition: width 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition-duration: 0.3s;
  opacity: 0;
}
.hoverEffects-2 a:after {
  right: 0;
  background-color: blue;
}
.hoverEffects-2 a:hover:before, .hoverEffects-2 a:hover:after {
  width: 100%;
  opacity: 1;
}

.hoverEffects-3 a {
  margin: 0;
  padding: 0;
  position: relative;
  border: none;
  color: #36bcfa;
}
.hoverEffects-3 a:before, .hoverEffects-3 a:after {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 0px;
  height: 3px;
  margin: 0;
  transition: all 0.2s ease-in-out;
  transition-duration: 0.3s;
  opacity: 0;
  background-color: blue;
}
.hoverEffects-3 a:before {
  left: 50%;
}
.hoverEffects-3 a:after {
  right: 50%;
}
.hoverEffects-3 a:hover {
  cursor: pointer;
}
.hoverEffects-3 a:hover:before, .hoverEffects-3 a:hover:after {
  width: 50%;
  opacity: 1;
}

.hoverEffects-4 a {
  margin: 0;
  padding: 0;
  position: relative;
  border: none;
  color: #36bcfa;
}
.hoverEffects-4 a:before, .hoverEffects-4 a:after {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 0px;
  height: 3px;
  margin: 0;
  transition: all 0.2s ease-in-out;
  transition-duration: 0.3s;
  opacity: 0;
  background-color: blue;
}
.hoverEffects-4 a:before {
  left: 0;
}
.hoverEffects-4 a:after {
  right: 0;
}
.hoverEffects-4 a:hover {
  cursor: pointer;
}
.hoverEffects-4 a:hover:before, .hoverEffects-4 a:hover:after {
  width: 50%;
  opacity: 1;
}

/* This version allows a break in the line */
.hoverEffects-5 {
  width: 600px;
}
.hoverEffects-5 p {
  font-size: 1.4em;
}
.hoverEffects-5 a {
  transition: background-size 1s linear;
  display: inline;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 45px;
  color: #000;
  text-decoration: none;
  padding-bottom: 5px;
  background: linear-gradient(to right, #00d1b1 0%, #278fc6 98%);
  background-size: 0px 2px;
  background-repeat: no-repeat;
  background-position: left 85%;
  text-shadow: 0;
}
.hoverEffects-5 a:hover {
  background-size: 100% 2px;
}

/* Marker hightlight */
.hoverEffects-6 a {
  background: linear-gradient(to bottom, #00d1b1 0%, #00d1b1 100%);
  background-position: 0 100%;
  background-repeat: repeat-x;
  background-size: 4px 4px;
  color: #000;
  text-decoration: none;
  transition: background-size 0.2s;
}
.hoverEffects-6 a:hover {
  background-size: 4px 50px;
}

.hoverEffects-7 a {
  background: linear-gradient(to bottom, #00d1b1 0%, #00d1b1 100%);
  background-position: 0 100%;
  background-repeat: repeat-x;
  background-size: 4px 4px;
  color: #000;
  text-decoration: none;
  transition: background-size 0.2s;
}
.hoverEffects-7 a:hover {
  background-size: 4px 50px;
}

/* 
	Typography

*/
body {
  font-family: Arial, sans-serif;
  font-size: 18px;
}
@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;
}

.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 only screen and (min-width: 600px) {
  .mainHeader.transformHeader {
    background-color: #0090d3;
  }
}

#navToggle {
  z-index: 2000;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
@media screen and (max-width: 600px) {
  #navToggle {
    display: block;
  }
}

#navToggle span, #navToggle span:before, #navToggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #607783;
  position: absolute;
  display: block;
  content: "";
}

#navToggle span:before {
  top: -10px;
}

#navToggle span:after {
  bottom: -10px;
}

#navToggle span, #navToggle span:before, #navToggle span:after {
  transition: all 300ms ease-in-out;
}

#navToggle.active span {
  background-color: transparent;
}

#navToggle.active span:before, #navToggle.active span:after {
  top: 0;
  background: #607783;
}

#navToggle.active span:before {
  transform: rotate(45deg);
}

#navToggle.active span:after {
  transform: rotate(-45deg);
}

html.active {
  overflow: hidden;
}

.mainNav.slideOn {
  width: 50%;
  position: fixed;
  top: 0;
  right: 0;
  margin-right: -50%;
}
.mainNav.slideOn.active {
  margin-right: 0;
}
.mainNav.slideOn ul {
  margin: 0;
  width: 100%;
  background-color: #333;
  padding: 5%;
}
.mainNav.slideOn ul li {
  font-size: 2em;
}
.mainNav.slideOn ul li a {
  border: none;
}

.active {
  animation-duration: 1s;
  animation-name: slideRight;
}

@keyframes slideRight {
  from {
    right: -100%;
  }
  to {
    right: 0;
  }
}
.inActive {
  animation-duration: 1s;
  animation-name: slideLeft;
}

@keyframes slideLeft {
  from {
    right: 0;
  }
  to {
    right: -100%;
  }
}
.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;
  }
}
.animationExamples .demoStage {
  width: 100%;
  height: 600px;
  background-color: #032f46;
  margin-bottom: 2px;
  position: relative;
}
.animationExamples .demoStage .demoBlock {
  width: 200px;
  height: 200px;
  background-color: #b07a97;
}
.animationExamples .demoStage .demoBall {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #b07a97;
  position: absolute;
  bottom: 300px;
}

.fadingIn {
  animation-duration: 6s;
  animation-name: fadingIn;
}

@keyframes fadingIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.bounce {
  animation-duration: 3s;
  animation-name: bounce;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 6s;
}

@keyframes bounce {
  0% {
    opacity: 0;
    bottom: 300px;
  }
  35% {
    bottom: 80px;
  }
  65% {
    bottom: 110px;
  }
  100% {
    opacity: 1;
    bottom: 80px;
  }
}
.dropIn {
  animation-duration: 1s;
  animation-name: dropIn;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 6s;
}

@keyframes dropIn {
  0% {
    opacity: 0;
    top: -45px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
.fadeIn {
  animation-duration: 2s;
  animation-name: fadeIn;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 3s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.expandWidth {
  animation-duration: 2s;
  animation-name: expandWidth;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 3s;
}

@keyframes expandWidth {
  0% {
    width: 25%;
  }
  100% {
    width: 100%;
  }
}
.flexExpand {
  animation-duration: 2s;
  animation-name: flexExpand;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}

@keyframes flexExpand {
  0% {
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: inherit;
  }
  100% {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.above .textSizeA {
  animation-duration: 2s;
  animation-name: textSizeA;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}

@keyframes textSizeA {
  100% {
    font-size: clamp(15px, 16.5vw, 8.5em);
    padding: 14% 0;
    opacity: 0.3;
  }
}
.below .textSizeB {
  animation-duration: 2s;
  animation-name: textSizeB;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 4s;
}

@keyframes textSizeB {
  100% {
    font-size: clamp(15px, 16.5vw, 8.5em);
    padding: 14% 0;
    opacity: 1;
  }
}
/* Typography

55 Roman
font-family: neue-haas-grotesk-display, sans-serif;
font-weight: 500; 
font-style: normal;

65 Medium
font-family: neue-haas-grotesk-display, sans-serif;
font-weight: 600; 
font-style: normal;

Text Italic
font-family: ivyora-text, serif;
font-weight: 400; 
font-style: italic;

Text Medium Italic
font-family: ivyora-text, serif;
font-weight: 500; 
font-style: italic;

*/
h1, h2, h3, h4, h5, h6 {
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.1em;
}
@media only screen and (max-width: 600px) {
  h1, h2, h3, h4, h5, h6 {
    font-size: 1.6em;
  }
}

p {
  font-size: 0.8em;
}
@media only screen and (max-width: 600px) {
  p {
    font-size: 0.95em;
  }
}

em {
  font-family: ivyora-text, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.1em;
}
@media only screen and (max-width: 600px) {
  em {
    font-size: 1.15em;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  display: none;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 500;
  font-style: normal;
}
body.galleryPage {
  display: inline;
}

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

body {
  background-color: rgb(255, 255, 255);
  transition: all 0.6s ease-in-out;
}
body.viewingsPage {
  background-color: rgb(238, 180, 70);
}
body.viewingsPage header.navBar {
  background: rgba(238, 180, 70, 0.9);
}
body .outerPadding {
  margin: 170px auto;
  max-width: 1400px;
  padding: 0 5%;
  min-width: 320px;
}
@media only screen and (max-width: 600px) {
  body .outerPadding {
    margin: 140px auto;
  }
}
body header.navBar.transformHeader .paddingWrap {
  margin: 10px auto;
}
body header.navBar {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
body header.navBar .paddingWrap {
  margin: 30px auto;
  max-width: 1400px;
  padding: 0 5%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.6s ease-in-out;
}
body header.navBar .paddingWrap .mainLogo {
  margin: 0;
  width: 80px;
}
body header.navBar .paddingWrap .mainLogo a {
  display: block;
}
body header.navBar .paddingWrap .mainLogo a img {
  transition: all 0.6s ease-in-out;
}
body header.navBar .paddingWrap .mainLogo a:hover img {
  transform: scale(1.1);
}
body header.navBar .paddingWrap nav#navWrap {
  transition: all 1.4s ease-in-out;
}
body header.navBar .paddingWrap nav#navWrap .mainNav.slideOn {
  transition: all 1.4s ease-in-out;
  width: 100%;
  height: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  margin-right: -100%;
  background: #009cae;
  padding-bottom: 160px;
  overflow: scroll;
}
body header.navBar .paddingWrap nav#navWrap .mainNav.slideOn ul {
  background: none;
  margin: 0 auto;
  height: 100%;
  height: 100svh;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  padding: 5% 5%;
}
@media only screen and (max-width: 600px) {
  body header.navBar .paddingWrap nav#navWrap .mainNav.slideOn ul {
    padding: 20% 5%;
  }
}
body header.navBar .paddingWrap nav#navWrap .mainNav.slideOn ul li {
  font-size: 5vw;
  font-size: clamp(32px, 6.5vw, 5.5em);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4em;
  opacity: 0;
  transform: translateY(-2000px);
  transition-delay: 6s;
  transition: all 1s ease-out;
}
body header.navBar .paddingWrap nav#navWrap .mainNav.slideOn ul li:last-of-type {
  margin-bottom: 0;
}
body header.navBar .paddingWrap nav#navWrap .mainNav.slideOn ul li a {
  color: rgb(0, 0, 0);
  transition: all 0.6s ease-in-out;
  position: relative;
}
body header.navBar .paddingWrap nav#navWrap .mainNav.slideOn ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  height: 5px;
  display: block;
  margin-top: 5px;
  right: 0;
  background: rgb(0, 0, 0);
  transition: width 0.5s ease;
  -webkit-transition: width 0.5s ease;
}
body header.navBar .paddingWrap nav#navWrap .mainNav.slideOn ul li a:hover:after {
  width: 100%;
  left: 0;
  background: rgb(0, 0, 0);
}
body header.navBar .paddingWrap nav#navWrap .mainNav.slideOn.active {
  margin-right: 0;
}
body header.navBar .paddingWrap nav#navWrap .mainNav.slideOn.active ul li {
  transform: translateY(0px);
  opacity: 1;
  transition: all 2s ease-in-out;
}
body header.navBar .paddingWrap nav#navWrap #navToggle {
  position: sticky;
  display: block;
  height: 26px;
  width: 38px;
  z-index: 20002;
  padding: 0;
  transition: all 0.6s ease-in-out;
}
body header.navBar .paddingWrap nav#navWrap #navToggle:hover {
  transform: scale(1.1);
}
body header.navBar .paddingWrap nav#navWrap #navToggle g {
  transition: all 0.6s ease-in-out;
  transform-origin: center;
}
body header.navBar .paddingWrap nav#navWrap #navToggle.active g#top, body header.navBar .paddingWrap nav#navWrap #navToggle.active g#bottom {
  opacity: 0;
}
body header.navBar .paddingWrap nav#navWrap #navToggle.active g#middle1 {
  transform: rotate(-45deg);
  transform-origin: center;
}
body header.navBar .paddingWrap nav#navWrap #navToggle.active g#middle2 {
  opacity: 1;
  transform: rotate(45deg);
  transform-origin: center;
}
body header.navBar .paddingWrap nav#navWrap #navToggle .menu {
  margin: 0;
}
body .hero {
  position: relative;
}
body .hero .scrollPrompt a#scrollDown {
  display: block;
}
body .hero .scrollPrompt a#scrollDown:hover img {
  opacity: 0.6;
  transform: scale(1.1);
}
body .hero .scrollPrompt img {
  width: 50px;
  position: absolute;
  left: calc(50% - 25px);
  bottom: 80px;
  z-index: 5001;
  transition: all 0.6s ease-in-out;
  transform-origin: top;
  mix-blend-mode: multiply;
}
body .hero .strapline {
  position: absolute;
  z-index: 5001;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
body .hero .strapline p {
  font-size: 1em;
  line-height: 0;
  margin: 0;
  padding: 0;
}
body .hero .strapline .left p {
  font-family: ivyora-text, serif;
  font-weight: 400;
  font-style: italic;
  transform: rotate(-90deg);
  transform-origin: center;
  margin-left: -38px;
}
@media only screen and (max-width: 600px) {
  body .hero .strapline .left p {
    margin-left: -32px;
  }
}
body .hero .strapline .right p {
  transform: rotate(90deg);
  transform-origin: center;
  margin-right: -55px;
}
@media only screen and (max-width: 600px) {
  body .hero .strapline .right p {
    margin-right: -50px;
  }
}
body .hero .flexslider {
  margin: 0;
  background: none;
}
body .hero .flexslider .heroText {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: all 0.6s ease-in-out;
}
body .hero .flexslider .heroText.splashExpand {
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
}
body .hero .flexslider .heroText.sus p {
  font-size: clamp(15px, 10.5vw, 4.5em);
}
body .hero .flexslider .heroText.above {
  z-index: 5000;
  opacity: 0.3;
}
body .hero .flexslider .heroText.below {
  z-index: 1;
}
body .hero .flexslider .heroText p {
  font-weight: 600;
  color: rgb(0, 0, 0);
  font-size: clamp(40px, 10vw, 7em);
  line-height: 0;
  text-transform: uppercase;
  margin: 0;
  text-align: justify;
  text-align-last: justify;
  width: 100%;
}
body .hero .flexslider ul {
  width: 95%;
  margin: 0 auto;
}
body .hero .flexslider ul li {
  height: 50%;
  height: 50svh;
}
@media only screen and (max-width: 600px) {
  body .hero .flexslider ul li {
    height: 70%;
    height: 70svh;
  }
}
body .hero .flexslider ul li img {
  height: 100%;
  object-fit: cover;
}
body .content .innerPadding {
  padding: 0 2.5%;
}
body .content .introWrap {
  padding-top: 6em;
}
body .content .introWrap.secondBlock {
  padding-top: 0;
  padding-bottom: 2em;
}
@media only screen and (max-width: 600px) {
  body .content .introWrap {
    padding-top: 4em;
  }
}
body .content .introWrap h1 {
  width: 50%;
  font-size: 1.5em;
  font-weight: 500;
}
@media only screen and (max-width: 600px) {
  body .content .introWrap h1 {
    width: 80%;
    font-size: 1.6em;
  }
}
body .content .introWrap p {
  width: 85%;
}
body .content .cardsWrap {
  margin-top: 4em;
  margin-bottom: 5em;
  display: flex;
}
@media only screen and (max-width: 600px) {
  body .content .cardsWrap {
    flex-direction: column;
    margin-top: 5em;
  }
}
body .content .cardsWrap .card {
  width: 50%;
  margin-right: 7%;
  position: relative;
}
@media only screen and (max-width: 600px) {
  body .content .cardsWrap .card {
    margin-right: 0;
    width: 100%;
  }
}
body .content .cardsWrap .card:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 600px) {
  body .content .cardsWrap .card:last-of-type {
    margin-top: 7em;
  }
}
body .content .cardsWrap .card a {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  justify-content: space-between;
  color: rgb(0, 0, 0);
  background-image: url("../images/backgrounds/kings-court-breakout-1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 13/9;
  transition: all 0.6s ease-in-out;
}
body .content .cardsWrap .card a.gallery {
  background-image: url("../images/backgrounds/kings-court-meeting-1.jpg");
}
body .content .cardsWrap .card a img.icon {
  width: 50px;
  margin-left: 5%;
  margin-top: -15px;
  align-self: flex-start;
  transition: all 0.6s ease-in-out;
}
@media only screen and (max-width: 600px) {
  body .content .cardsWrap .card a img.icon {
    width: 120px;
    margin-top: -60px;
  }
}
body .content .cardsWrap .card a p.overlayText {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  font-size: 4vw;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-right: -5%;
  margin-bottom: -6.5%;
  margin-top: 0;
  line-height: 1em;
  transition: all 0.6s ease-in-out;
}
@media only screen and (max-width: 600px) {
  body .content .cardsWrap .card a p.overlayText {
    font-size: 14.5vw;
    text-align: left;
    left: 0;
    margin-right: 0;
  }
}
body .content .cardsWrap .card a p.overlayText.above {
  z-index: 5000;
  opacity: 0.3;
}
body .content .cardsWrap .card a p.overlayText.below {
  z-index: -1;
}
body .content .cardsWrap .card a:hover img.icon {
  margin-left: 7%;
  transform: scale(1.1);
}
body .content .cardsWrap .card a:hover p.overlayText {
  transform: scale(1.15);
}
body .content .planWrap h2 {
  margin-bottom: 1em;
}
body .content .planWrap .plan {
  width: 85%;
  margin-bottom: 4em;
}
@media only screen and (max-width: 600px) {
  body .content .planWrap .plan {
    width: 100%;
  }
}
body .content .planWrap .twoCols {
  width: 85%;
  margin-bottom: 4em;
}
@media only screen and (max-width: 600px) {
  body .content .planWrap .twoCols {
    width: 100%;
    margin-bottom: 3em;
  }
}
body .content .planWrap .twoCols .unit2 {
  margin-right: 7%;
}
body .content .planWrap .twoCols .unit2:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 600px) {
  body .content .planWrap .twoCols .unit2:last-of-type {
    margin-top: 3em;
  }
}
body .content .planWrap .twoCols .unit2 h3, body .content .planWrap .twoCols .unit2 h4, body .content .planWrap .twoCols .unit2 h5 {
  margin-bottom: 1em;
}
body .content .planWrap .twoCols .unit2 .area_schedule {
  overflow: auto;
  width: 100%;
}
body .content .planWrap .twoCols .unit2 .area_schedule table {
  height: 100%;
  width: 100%;
  table-layout: auto;
  border-collapse: collapse;
  border-spacing: 1px;
  text-align: left;
  font-size: 0.8em;
}
@media only screen and (max-width: 600px) {
  body .content .planWrap .twoCols .unit2 .area_schedule table {
    font-size: 0.95em;
  }
}
body .content .planWrap .twoCols .unit2 .area_schedule tbody {
  vertical-align: top;
}
body .content .planWrap .twoCols .unit2 .area_schedule th {
  background-color: #ffffff;
  color: #000000;
  padding: 7px 0;
  font-weight: 500;
}
body .content .planWrap .twoCols .unit2 .area_schedule td {
  background-color: #ffffff;
  color: #000000;
  padding: 7px 0;
}
body .content .planWrap .twoCols .unit2 .area_schedule td em {
  font-size: 1em;
}
body .content .planWrap .twoCols .unit2 .area_schedule tr {
  border-bottom: 1px solid rgb(238, 180, 70);
}
body .content .planWrap .twoCols .unit2 ul {
  list-style: none;
  padding: 0;
}
body .content .planWrap .twoCols .unit2 ul li {
  display: flex;
  align-items: center;
  border-bottom: solid 1px rgb(238, 180, 70);
  padding: 12px 30px 10px 0;
  font-size: 0.8em;
}
@media only screen and (max-width: 600px) {
  body .content .planWrap .twoCols .unit2 ul li {
    font-size: 0.95em;
  }
}
body .content .planWrap .twoCols .unit2 ul li:first-of-type {
  border-top: solid 1px rgb(238, 180, 70);
}
body .content .planWrap .twoCols .unit2 ul li img {
  width: 40px;
  margin-right: 30px;
}
@media only screen and (max-width: 600px) {
  body .content .planWrap .twoCols .unit2 ul li img {
    width: 60px;
    margin-right: 60px;
  }
}
body .content .planWrap .amenitities.twoCols {
  width: 100%;
}
body .content .planWrap .amenitities.twoCols .unit2:first-of-type {
  width: 30%;
  margin-right: 20%;
}
body .content .planWrap .amenitities.twoCols .pullOutWrap {
  display: flex;
  height: 100%;
  flex-direction: column-reverse;
  position: relative;
  padding-top: 40px;
  justify-content: flex-end;
}
body .content .planWrap .amenitities.twoCols .pullOutWrap img.pullOut {
  aspect-ratio: 1/1.3;
  object-fit: cover;
}
body .content .planWrap .amenitities.twoCols .pullOutWrap figcaption {
  background: rgb(238, 180, 70);
  color: rgb(0, 0, 0);
  width: 170px;
  padding: 10px 15px;
  font-size: 0.95em;
  display: block;
  line-height: 1.4em;
  position: absolute;
  left: 5%;
  top: 0;
}
body .content .planWrap .amenitities.twoCols .pullOutWrap figcaption em {
  font-size: 1.6em;
}
body .content .planWrap .connections .pullOutWrap {
  display: flex;
  height: 100%;
  flex-direction: column;
  position: relative;
  justify-content: flex-end;
  align-items: flex-end;
}
@media only screen and (max-width: 600px) {
  body .content .planWrap .connections .pullOutWrap {
    align-items: flex-start;
  }
}
body .content .planWrap .connections .pullOutWrap img.pullOut {
  aspect-ratio: 16/6;
  object-fit: cover;
}
@media only screen and (max-width: 600px) {
  body .content .planWrap .connections .pullOutWrap img.pullOut {
    aspect-ratio: 1/1;
    width: 80%;
  }
}
body .content .planWrap .connections .pullOutWrap figcaption {
  background: rgb(117, 112, 59);
  color: rgb(255, 255, 255);
  width: 170px;
  padding: 10px 15px;
  font-size: 0.95em;
  display: block;
  line-height: 1.4em;
  position: absolute;
  left: 5%;
  bottom: -40px;
}
@media only screen and (max-width: 600px) {
  body .content .planWrap .connections .pullOutWrap figcaption {
    left: inherit;
    bottom: inherit;
    right: 0;
    top: 50px;
  }
}
body .content .planWrap .connections .pullOutWrap figcaption em {
  font-size: 1.6em;
}
body .content .planWrap .connections .pullOutWrap .logoWrap {
  margin-top: 40px;
  width: 58%;
}
@media only screen and (max-width: 600px) {
  body .content .planWrap .connections .pullOutWrap .logoWrap {
    width: 100%;
  }
}
body .content .planWrap .connections .unit1.twoCols {
  width: 100%;
  margin-top: 7em;
  display: flex;
}
@media only screen and (max-width: 600px) {
  body .content .planWrap .connections .unit1.twoCols {
    flex-direction: column;
    margin-top: 3em;
  }
}
body .content .planWrap .connections .unit1.twoCols .unit2:last-of-type img {
  margin-bottom: 2em;
}
body .content .planWrap .connections .unit1.twoCols .unit2:last-of-type .pullOutWrap {
  display: flex;
  height: auto;
  flex-direction: row;
  align-items: center;
  justify-content: inherit;
  position: inherit;
}
body .content .planWrap .connections .unit1.twoCols .unit2:last-of-type .pullOutWrap img {
  width: 50%;
  margin-bottom: 0;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media only screen and (max-width: 600px) {
  body .content .planWrap .connections .unit1.twoCols .unit2:last-of-type .pullOutWrap img {
    width: 75%;
  }
}
body .content .planWrap .connections .unit1.twoCols .unit2:last-of-type .pullOutWrap figcaption {
  background: rgb(0, 156, 174);
  color: rgb(0, 0, 0);
  width: 120px;
  display: block;
  position: inherit;
  margin-left: -40px;
}
body .content .mapWrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: space-between;
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 600px) {
  body .content .mapWrap {
    margin-top: 5em;
  }
}
body .content .mapWrap a {
  position: absolute;
}
body .content .mapWrap a img.icon {
  width: 60px;
  margin-left: 50px;
  margin-top: -30px;
  transition: all 0.6s ease-in-out;
}
@media only screen and (max-width: 600px) {
  body .content .mapWrap a img.icon {
    width: 70px;
  }
}
body .content .mapWrap a img.icon:hover {
  margin-left: 60px;
  transform: scale(1.1);
}
body .content .mapWrap p.overlayText {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 4vw;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0;
  line-height: 0em;
  transition: all 0.6s ease-in-out;
}
@media only screen and (max-width: 600px) {
  body .content .mapWrap p.overlayText {
    font-size: 14.5vw;
    text-align: left;
    left: 0;
    margin-right: 0;
  }
}
body .content .mapWrap p.overlayText.above {
  z-index: 5000;
  opacity: 0.3;
}
body .content .mapWrap p.overlayText.below {
  z-index: -1;
}
body .content .ctaWrap {
  margin-top: 8em;
  margin-bottom: 5em;
  display: flex;
}
@media only screen and (max-width: 600px) {
  body .content .ctaWrap {
    flex-direction: column;
  }
}
body .content .ctaWrap.unit2 {
  flex-direction: column;
  margin-top: 30px;
  margin-bottom: 0;
}
body .content .ctaWrap.unit2 .cta {
  margin-right: 0;
}
body .content .ctaWrap.unit2 .cta:first-of-type {
  margin-bottom: 4em;
}
body .content .ctaWrap .cta {
  width: 50%;
  margin-right: 7%;
  position: relative;
  display: block;
  color: rgb(0, 0, 0);
  background-image: url("../images/backgrounds/kings-court-breakout-3.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 1/0.9;
  transition: all 0.6s ease-in-out;
}
body .content .ctaWrap .cta:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 600px) {
  body .content .ctaWrap .cta:last-of-type {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    margin-top: 5em;
  }
  body .content .ctaWrap .cta:last-of-type a p {
    margin-left: 45%;
  }
}
@media only screen and (max-width: 600px) {
  body .content .ctaWrap .cta {
    width: 70%;
    margin-left: 30%;
  }
}
body .content .ctaWrap .cta a {
  display: flex;
  height: 100%;
  flex-direction: column;
}
body .content .ctaWrap .cta a:hover p {
  transform: scale(1.1);
  transform-origin: left;
}
body .content .ctaWrap .cta a p {
  width: fit-content;
  background: rgb(117, 112, 59);
  color: rgb(255, 255, 255);
  margin-top: -30px;
  margin-left: 5%;
  padding: 10px 50px 10px 15px;
  font-size: 0.95em;
  display: block;
  position: relative;
  line-height: 1.1em;
  transition: all 0.6s ease-in-out;
  transform-origin: left;
}
@media only screen and (max-width: 600px) {
  body .content .ctaWrap .cta a p {
    font-size: 0.95em;
    margin-left: -42.5%;
    padding: 15px 65px 15px 20px;
  }
}
body .content .ctaWrap .cta a p:after {
  display: block;
  content: "";
  background-image: url("../images/icons/arrow-right-white.svg");
  width: 20px;
  aspect-ratio: 1/1;
  position: absolute;
  right: 15px;
  top: 10px;
}
@media only screen and (max-width: 600px) {
  body .content .ctaWrap .cta a p:after {
    width: 30px;
    right: 20px;
    top: 15px;
  }
}
body .content .ctaWrap .cta.viewing {
  background-image: url("../images/backgrounds/kings-court-frontage-1.jpg");
}
@media only screen and (max-width: 600px) {
  body .content .ctaWrap .cta.viewing {
    margin-top: 4em;
  }
}
body .content .ctaWrap .cta.viewing a p {
  background: rgb(238, 180, 70);
  color: rgb(0, 0, 0);
}
body .content .ctaWrap .cta.viewing a p:after {
  background-image: url("../images/icons/arrow-right-black.svg");
}
body .content .ctaWrap .cta.sustainable {
  background-image: url("../images/backgrounds/kings-court-detail-1.jpg");
}
@media only screen and (max-width: 600px) {
  body .content .ctaWrap .cta.sustainable {
    width: 60%;
    margin-left: 30%;
    aspect-ratio: 9/16;
    background-position: center;
    background-size: cover;
  }
}
body .content .ctaWrap .cta.sustainable a p {
  background: rgb(248, 232, 207);
  color: rgb(0, 0, 0);
}
body .content .ctaWrap .cta.sustainable a p:after {
  background-image: url("../images/icons/arrow-right-black.svg");
}
body .content .businessesLogoWrap {
  margin-top: 3em;
  margin-bottom: 3em;
  width: 85%;
}
@media only screen and (max-width: 600px) {
  body .content .businessesLogoWrap {
    width: 100%;
  }
}
body .content .businessesLogoWrap .businessesLogo {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
body .content .businessesLogoWrap .businessesLogo img {
  margin-right: 40px;
  height: 20px;
  width: auto;
  margin-top: 7px;
}
body .content .businessesLogoWrap .businessesLogo img:first-of-type {
  height: 40px;
  margin-top: 0;
}
body .content .businessesLogoWrap .businessesLogo img:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 600px) {
  body .content .businessesLogoWrap .businessesLogo img {
    height: 25px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 600px) {
  body .content .amenitities.unit1.twoCols.grid.locationPage {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 600px) {
  body .content .amenitities.unit1.twoCols.grid.locationPage .unit2:last-of-type {
    margin-top: 0;
    margin-bottom: 3em;
  }
}
@media only screen and (max-width: 600px) {
  body .content .amenitities.unit1.twoCols.grid.locationPage .unit2:first-of-type {
    width: 100%;
  }
}
body .content .amenitities.unit1.twoCols.grid.sustainablePage {
  margin-top: 3em;
}
@media only screen and (max-width: 600px) {
  body .content .amenitities.unit1.twoCols.grid.sustainablePage .unit2 {
    width: 100%;
  }
}
body .content .amenitities.unit1.twoCols.grid.sustainablePage .unit2 .ruledListWrap {
  padding: 0;
}
body .content .amenitities.unit1.twoCols.grid.sustainablePage .unit2 .ruledListWrap .ruledListItem {
  display: flex;
  border-bottom: solid 1px rgb(238, 180, 70);
  padding: 12px 0px 13px 0;
  width: 100%;
}
@media only screen and (max-width: 600px) {
  body .content .amenitities.unit1.twoCols.grid.sustainablePage .unit2 .ruledListWrap .ruledListItem {
    font-size: 0.95em;
  }
}
body .content .amenitities.unit1.twoCols.grid.sustainablePage .unit2 .ruledListWrap .ruledListItem:first-of-type {
  border-top: solid 1px rgb(238, 180, 70);
}
body .content .amenitities.unit1.twoCols.grid.sustainablePage .unit2 .ruledListWrap .ruledListItem img {
  width: 40px;
  margin-right: 30px;
  align-self: flex-start;
}
@media only screen and (max-width: 600px) {
  body .content .amenitities.unit1.twoCols.grid.sustainablePage .unit2 .ruledListWrap .ruledListItem img {
    width: 60px;
    margin-right: 80px;
  }
}
body .content .amenitities.unit1.twoCols.grid.sustainablePage .unit2 .ruledListWrap .ruledListItem p {
  font-size: 0.8em;
  line-height: 1.2em;
  margin-bottom: 0;
  width: calc(100% - 70px);
}
body .content .amenitities.unit1.twoCols.grid.sustainablePage .unit2 .ruledListWrap .ruledListItem p em {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.3em;
  line-height: 1.3em;
  font-weight: 500;
  font-style: normal;
}
body.viewingsPage .hero.innerPadding, body.galleryPage .hero.innerPadding {
  padding: 0 2.5%;
}
body.viewingsPage .hero.innerPadding .unit1, body.galleryPage .hero.innerPadding .unit1 {
  border-bottom: solid 1px rgb(0, 0, 0);
}
body.viewingsPage .hero.innerPadding .unit1 h1, body.galleryPage .hero.innerPadding .unit1 h1 {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 4vw;
}
@media only screen and (max-width: 600px) {
  body.viewingsPage .hero.innerPadding .unit1 h1, body.galleryPage .hero.innerPadding .unit1 h1 {
    font-size: 10vw;
    margin-bottom: 0.5em;
  }
}
@media only screen and (max-width: 600px) {
  body.viewingsPage .content .planWrap.unit1.innerPadding .unit1.smallPrint, body.galleryPage .content .planWrap.unit1.innerPadding .unit1.smallPrint {
    border-top: 1px solid rgb(0, 0, 0);
    margin-top: 2em;
    padding-top: 2em;
  }
  body.viewingsPage .content .planWrap.unit1.innerPadding .unit1.smallPrint p, body.galleryPage .content .planWrap.unit1.innerPadding .unit1.smallPrint p {
    font-size: 0.85em;
  }
}
body.viewingsPage .content .planWrap.unit1.innerPadding .unit1.twoCols, body.galleryPage .content .planWrap.unit1.innerPadding .unit1.twoCols {
  width: 100%;
  margin-top: 3em;
}
@media only screen and (max-width: 600px) {
  body.viewingsPage .content .planWrap.unit1.innerPadding .unit1.twoCols, body.galleryPage .content .planWrap.unit1.innerPadding .unit1.twoCols {
    margin-top: 1.5em;
    margin-bottom: 0em;
  }
}
body.viewingsPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2, body.galleryPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2 {
  width: 30%;
  margin-right: 20%;
}
@media only screen and (max-width: 600px) {
  body.viewingsPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2, body.galleryPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2 {
    width: 100%;
    border-bottom: solid 1px rgb(0, 0, 0);
    padding-bottom: 2em;
  }
  body.viewingsPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2:last-of-type, body.galleryPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2:last-of-type {
    margin-top: 2em;
  }
}
body.viewingsPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2 p, body.galleryPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2 p {
  font-size: 1.3em;
  line-height: 1.3em;
  font-weight: 500;
  font-style: normal;
}
body.viewingsPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2 p a, body.galleryPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2 p a {
  color: rgb(0, 0, 0);
  border-bottom: solid 1px rgb(0, 0, 0);
  padding-bottom: 0.01em;
}
body.viewingsPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2 p a:hover, body.galleryPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2 p a:hover {
  opacity: 0.5;
}
body.viewingsPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2 a img, body.galleryPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2 a img {
  width: 20%;
  transition: all 0.6s ease-in-out;
  transform-origin: left;
}
@media only screen and (max-width: 600px) {
  body.viewingsPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2 a img, body.galleryPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2 a img {
    width: 15%;
  }
}
body.viewingsPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2 a:hover img, body.galleryPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2 a:hover img {
  transform: scale(1.1);
  opacity: 0.5;
}
@media only screen and (max-width: 600px) {
  body.viewingsPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2:last-of-type, body.galleryPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }
}
body.viewingsPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2:last-of-type p:last-of-type, body.galleryPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2:last-of-type p:last-of-type {
  margin-bottom: 1.8em;
}
body.viewingsPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2:last-of-type a img, body.galleryPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2:last-of-type a img {
  width: 70%;
}
@media only screen and (max-width: 600px) {
  body.viewingsPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2:last-of-type a img, body.galleryPage .content .planWrap.unit1.innerPadding .unit1.twoCols .unit2:last-of-type a img {
    width: 60%;
  }
}
body.viewingsPage footer, body.galleryPage footer {
  background: rgb(238, 180, 70);
}
body.galleryPage .hero.innerPadding {
  padding: 0 3.5%;
}
body.galleryPage .hero.innerPadding h1 {
  margin-bottom: 0.2em;
}
body.galleryPage .hero.innerPadding p {
  font-size: 1em;
  margin-bottom: 2em;
}
body.galleryPage footer {
  background: rgb(255, 255, 255);
}
body .content .galleryWrap {
  margin-top: 3.5em;
}
body .content .galleryWrap .imageGrid#masonry-grid {
  /* 2 columns */
  /* 3 columns */
}
body .content .galleryWrap .imageGrid#masonry-grid:after {
  content: "";
  display: block;
  clear: both;
}
body .content .galleryWrap .imageGrid#masonry-grid .grid-sizer {
  width: 33.3333%;
  background: blue;
}
body .content .galleryWrap .imageGrid#masonry-grid .grid-item {
  width: 33.3333%;
  float: left;
  padding-bottom: 8px;
  padding-left: 6px;
  padding-right: 6px;
}
body .content .galleryWrap .imageGrid#masonry-grid .grid-item--width2 {
  width: 66.6666%;
}
body .content .galleryWrap .imageGrid#masonry-grid .grid-item--width3 {
  width: 100%;
}
body .content .galleryWrap .imageGrid#masonry-grid img {
  aspect-ratio: 1/0.95;
  object-fit: cover;
}
body .content .galleryWrap .imageGrid#masonry-grid img.landscape {
  aspect-ratio: 14/6.55;
}
body .content .galleryWrap .imageGrid#masonry-grid img.portrait {
  aspect-ratio: 6.55/12.65;
}
body .content .galleryWrap .imageGrid#masonry-grid a {
  transform-origin: center;
}
body .content .galleryWrap .imageGrid#masonry-grid a:hover {
  transform: scale(1.02);
  opacity: 0.5;
}
body.homePage .hero .flexslider .heroText p {
  font-size: clamp(15px, 16.5vw, 8.5em);
}
body.homePage .content .introWrap {
  padding-bottom: 2em;
}
@media only screen and (max-width: 600px) {
  body.homePage .content .introWrap {
    padding-bottom: 0.5em;
  }
}
body.homePage .content .introWrap h1 {
  font-size: 1.9em;
}
@media only screen and (max-width: 600px) {
  body.homePage .content .introWrap h1 {
    font-size: 1.6em;
  }
}
body.homePage .content .introWrap p {
  font-size: 1.2em;
}
@media only screen and (max-width: 600px) {
  body.homePage .content .introWrap p {
    font-size: 1em;
  }
}
body.homePage .content .planWrap .twoCols {
  width: 100%;
}
body.homePage .content .planWrap .twoCols .ctaWrap .cta.spaces {
  background-image: url("../images/backgrounds/kings-court-spaces-thumb-1.jpg");
  aspect-ratio: 9/15;
}
@media only screen and (max-width: 600px) {
  body.homePage .content .planWrap .twoCols .ctaWrap .cta.spaces {
    margin-top: 2em;
    margin-bottom: 0em;
  }
}
body.homePage .content .planWrap .twoCols .ctaWrap .cta.spaces a p {
  background: rgb(0, 156, 174);
  color: rgb(0, 0, 0);
  width: 180px;
}
@media only screen and (max-width: 600px) {
  body.homePage .content .planWrap .twoCols .ctaWrap .cta.spaces a p {
    width: 200px;
  }
}
body.homePage .content .planWrap .twoCols .ctaWrap .cta.spaces a p:after {
  background-image: url("../images/icons/arrow-right-black.svg");
}
body.homePage .content .planWrap .twoCols .ctaWrap .cta.sustainability {
  background-image: url("../images/backgrounds/kings-court-breakout-hero-1.jpg");
  aspect-ratio: 1/0.935;
}
@media only screen and (max-width: 600px) {
  body.homePage .content .planWrap .twoCols .ctaWrap .cta.sustainability {
    margin-top: 4em;
    margin-bottom: 1em;
  }
}
body.homePage .content .planWrap .twoCols .ctaWrap .cta.sustainability a p {
  background: rgb(248, 232, 207);
  color: rgb(0, 0, 0);
  width: 120px;
}
@media only screen and (max-width: 600px) {
  body.homePage .content .planWrap .twoCols .ctaWrap .cta.sustainability a p {
    width: 170px;
  }
}
body.homePage .content .planWrap .twoCols .ctaWrap .cta.sustainability a p:after {
  background-image: url("../images/icons/arrow-right-black.svg");
}
body.homePage .content .planWrap .twoCols .ctaWrap .cta.location {
  aspect-ratio: 1/1.3;
}
@media only screen and (max-width: 600px) {
  body.homePage .content .planWrap .twoCols .ctaWrap .cta.location {
    margin-bottom: 0em;
  }
}
body.homePage .content .planWrap .twoCols .ctaWrap .cta.location a p {
  width: 140px;
}
@media only screen and (max-width: 600px) {
  body.homePage .content .planWrap .twoCols .ctaWrap .cta.location a p {
    width: 160px;
  }
}
body.homePage .content .planWrap .twoCols .ctaWrap .cta.viewing {
  background-position: center center;
  aspect-ratio: 1/1.3;
}
body.homePage.splashAnimate .content .introWrap {
  padding-top: 0;
}
body footer {
  background: rgb(255, 255, 255);
}
body footer.outerPadding {
  margin: 80px auto;
}
@media only screen and (max-width: 600px) {
  body footer.outerPadding {
    margin: 0px auto;
  }
}
body footer .innerPadding {
  padding: 0 2.5%;
}
body footer .innerPadding .unit1 {
  border-top: 1px solid rgb(0, 0, 0);
  padding: 2em 0;
  justify-content: space-between;
  align-items: flex-end;
}
body footer .innerPadding .unit1 .leftCol {
  width: 40%;
}
@media only screen and (max-width: 600px) {
  body footer .innerPadding .unit1 .leftCol {
    width: 100%;
  }
}
body footer .innerPadding .unit1 .leftCol .footerLogo {
  width: 80px;
  margin-bottom: 1em;
}
body footer .innerPadding .unit1 .leftCol .footerLogo a img {
  transition: all 0.6s ease-in-out;
}
body footer .innerPadding .unit1 .leftCol .footerLogo a:hover img {
  transform: scale(1.1);
}
body footer .innerPadding .unit1 .leftCol .footerDetails p {
  font-size: 0.6em;
}
@media only screen and (max-width: 600px) {
  body footer .innerPadding .unit1 .leftCol .footerDetails p {
    font-size: 0.8em;
  }
}
body footer .innerPadding .unit1 .leftCol .footerDetails p:last-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width: 600px) {
  body footer .innerPadding .unit1 .leftCol .footerDetails p:last-of-type {
    margin-bottom: 2em;
  }
}
body footer .innerPadding .unit1 .rightCol {
  width: 40%;
}
@media only screen and (max-width: 600px) {
  body footer .innerPadding .unit1 .rightCol {
    width: 100%;
  }
}
body footer .innerPadding .unit1 .rightCol .socialLogos {
  justify-content: flex-end;
}
body footer .innerPadding .unit1 .rightCol .socialLogos a {
  margin-right: 15px;
  margin-bottom: 0;
}
body footer .innerPadding .unit1 .rightCol .socialLogos a:last-of-type {
  margin-right: 0;
}
body footer .innerPadding .unit1 .rightCol .socialLogos a img {
  width: 30px;
}
@media only screen and (max-width: 600px) {
  body footer .innerPadding .unit1 .rightCol .socialLogos a img {
    width: 35px;
  }
}
body footer .innerPadding .unit1 .rightCol .socialLogos a:hover {
  transform: scale(1.2);
}

/* Lightbox customisations */
.lightboxOverlay {
  background: rgb(255, 255, 255);
  opacity: 1;
}

.lightbox .lb-image {
  border: 30px solid rgba(255, 255, 255, 0);
}

.lb-closeContainer {
  display: flex;
  justify-content: center;
}

.lb-data .lb-close {
  background: url("../images/icons/lightbox-close.png");
  background-size: contain;
  text-align: center;
  float: none;
  margin-top: 10px;
  opacity: 0.5;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next {
  background: url("../images/icons/lightbox-nextArrow.png") 98% 48% no-repeat;
}

.lb-nav a.lb-prev {
  background: url("../images/icons/lightbox-prevArrow.png") 4% 48% no-repeat;
}

/* Landing animation */
body.homePage.splashAnimate header.navBar {
  opacity: 0;
}
body.homePage.splashAnimate .hero .unit1 {
  width: 25%;
  margin: 0 auto;
  margin-top: -130px;
}
@media only screen and (max-width: 600px) {
  body.homePage.splashAnimate .hero .unit1 {
    margin-top: -140px;
  }
}
body.homePage.splashAnimate .hero .unit1 .scrollPrompt.bounce {
  opacity: 0;
}
body.homePage.splashAnimate .hero .unit1 .strapline {
  width: 25%;
  opacity: 0;
}
body.homePage.splashAnimate .hero .unit1 .flexslider ul {
  height: 100%;
  height: 100svh;
  opacity: 0;
}
body.homePage.splashAnimate .hero .unit1 .flexslider ul li {
  height: 85%;
  height: 85svh;
  padding-top: 15%;
  padding-top: 15svh;
}
body.homePage.splashAnimate .hero .unit1 .flexslider .heroText {
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
}
body.homePage.splashAnimate .hero .unit1 .flexslider .heroText p {
  font-size: clamp(20px, 5vw, 3.8em);
  display: block;
  height: auto;
  padding: 11% 0;
}
