.ir {
  display: inline-block;
  text-indent: -2000px;
  overflow: hidden;
  background-repeat: no-repeat;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
.debug {
  box-shadow: 0 0 1px black inset;
}
.scaler {
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  overflow: hidden;
  position: absolute;
}
.scaler img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  min-width: 50%;
  min-height: 50%;
}
/*
@media screen and (min-width: @wide) {        // WIDE ONLY
  html { background: lighten(pink, 10%); }
}

@media screen and (min-width: @narrow) and (max-width: @wide) { // MEDIUM ONLY
  html { background: lighten(lightgreen, 19%); }
}

@media screen and (max-width: @narrow) {      // NARROW ONLY
  html { background: lighten(lightblue, 17%); }
}
*/
.roman {
  font-family: 'AvenirLTStd-Roman';
}
.heavy {
  font-family: 'AvenirLTStd-Heavy';
}
* {
  outline: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family: 'AvenirLTStd-Roman';
  font-size: 20px;
  line-height: 27px;
  color: #4e4e4e;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 22px;
  }
}
main {
  padding-top: 17.5px;
  padding-bottom: 35px;
}
@media screen and (min-width: 768px) {
  main {
    padding-top: 59.5px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  main {
    padding-top: 87.5px;
    padding-bottom: 35px;
  }
}
.row {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
a {
  color: #4e4e4e;
  text-decoration: none;
  opacity: 1;
  -webkit-transition: opacity 0.1s ease-out;
  -moz-transition: opacity 0.1s ease-out;
  -ms-transition: opacity 0.1s ease-out;
  -o-transition: opacity 0.1s ease-out;
  transition: opacity 0.1s ease-out;
}
a:hover {
  opacity: 0.7;
}
p a {
  color: #ef444d;
}
h2,
h3 {
  color: #ef444d;
  font-weight: normal;
  margin-top: 0;
}
h2 {
  font-size: 22px;
  line-height: 30px;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 40px;
    line-height: 55px;
  }
}
h3 {
  font-size: 30px;
  line-height: 41px;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 20px;
    line-height: 27px;
  }
}
img {
  width: 100%;
  display: block;
}
button {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  /* show a hand cursor on hover; some argue that we
  should keep the default arrow cursor for buttons */
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .hide-narrow {
    display: none;
  }
}
@media screen and (max-width: calc(768px  -  1px)) {
  .page-title h2 {
    margin-bottom: 50px;
    height: 40px;
  }
}
.link.link-secondary {
  color: #ef444d;
}
.col.r-pad-4 {
  padding-right: calc(35px * 4);
}
.col.r-pad-3 {
  padding-right: calc(35px * 3);
}
.row {
  padding: 19.44444444px;
}
.row.padded {
  padding: 35px;
}
.row.no-pad-b {
  padding-bottom: 0;
}
@media screen and (max-width: calc(768px - 1px)) {
  .row.double > .col,
  .row.triple > .col {
    margin-bottom: 56px;
  }
  .row.double > .col:last-child,
  .row.triple > .col:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .row.double {
    display: flex;
    justify-content: space-between;
  }
  .row.double > .col {
    width: calc(50% - 35px / 2);
  }
}
@media screen and (min-width: 768px) {
  .row.triple {
    display: flex;
    justify-content: space-between;
  }
  .row.triple > .col {
    width: calc(33.333% - 35px / 1.5);
  }
}
@media screen and (min-width: 768px) {
  .row {
    padding: 35px 45.5px;
  }
}
.region-callout {
  background: #ef444d;
}
.region-symbol {
  background-repeat: no-repeat;
}
.region-symbol.sun {
  background-image: url('../img/symbols/sun.svg');
}
.region-symbol.bolt {
  background-image: url('../img/symbols/bolt.svg');
}
.region-symbol.battery {
  background-image: url('../img/symbols/battery.svg');
}
.region-symbol.bolt-invert {
  background-image: url('../img/symbols/bolt-invert.svg');
}
.region-symbol.atom-invert {
  background-image: url('../img/symbols/atom-invert.svg');
}
.region-symbol.battery-invert {
  background-image: url('../img/symbols/battery-invert.svg');
}
.region-symbol.grid {
  background-image: url('../img/symbols/grid.svg');
}
.region-symbol.battery-bank {
  background-image: url('../img/symbols/battery-bank.svg');
}
.region-symbol-image {
  position: relative;
}
.region-symbol-image:after {
  content: '';
  width: 172px;
  height: 172px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  right: -87px;
}
.region-symbol-image.battery:after {
  background-image: url('../img/symbols/battery.svg');
}
@media screen and (min-width: 768px) and (max-width: calc(992px  -  1px)) {
  .region-symbol {
    background-image: none !important;
  }
}
@media screen and (max-width: calc(768px  -  1px)) {
  .region-symbol {
    padding-top: 85px;
    background-size: 85px;
  }
}
header {
  height: 84px;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
}
header .logo {
  width: 100%;
  max-width: 180px;
  display: block;
}
header .nav {
  display: none;
}
header .nav a {
  font-size: 18px;
  margin-right: 10px;
  padding: 6px 15px;
  display: inline-block;
  text-transform: uppercase;
}
header .nav a.highlight {
  background-color: #ef444d;
  border-radius: 4px;
  color: #ffffff;
  padding: 6px 20px;
}
header .nav a:last-child {
  margin-right: 0;
}
header .nav-mobile {
  background-color: #ffffff;
  position: fixed;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease;
  transition-property: opacity visibility;
}
header .nav-mobile > .row {
  display: block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
header .nav-mobile > .row:after {
  content: '';
  width: 93px;
  height: 14px;
  margin-top: 25px;
  background: url('/img/symbols/waves-grey.svg') no-repeat;
  position: relative;
  display: block;
}
header .nav-mobile a {
  display: block;
  font-size: 30px;
  line-height: 61px;
  color: #ef444d;
}
header .nav-mobile.is-active {
  opacity: 1;
  visibility: visible;
}
header .nav-trigger {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 67px;
  display: block;
  padding: 15px;
}
header .nav-close {
  width: 58px;
  height: 58px;
  position: absolute;
  right: 0;
  top: 12px;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  header .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  header {
    height: 112px;
  }
  header .logo {
    max-width: 230px;
  }
  header .nav {
    display: flex;
  }
  header .nav a {
    font-size: 18px;
    margin-right: 10px;
    padding: 6px 10px;
  }
  header .nav-trigger {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  header {
    height: 140px;
  }
  header .logo {
    max-width: 300px;
  }
  header .nav a {
    font-size: 20px;
    margin-right: 15px;
    padding: 6px 15px;
  }
}
footer {
  background: #ef444d;
  color: #ffffff;
  padding-top: 23.33333333px;
  padding-bottom: 23.33333333px;
}
footer .row {
  padding-top: 0;
  padding-bottom: 0;
}
footer .row.main {
  display: flex;
  flex-direction: column-reverse;
}
footer a {
  color: #ffffff;
}
footer .logo {
  width: 100%;
  max-width: 220px;
  margin-bottom: 40px;
}
footer nav {
  line-height: 47px;
}
footer nav a {
  display: block;
}
footer .enquire-box {
  background-color: rgba(78, 78, 78, 0.37);
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
}
footer .enquire-box .enquire-box-text {
  background: url('/img/symbols/sun-solo.svg') no-repeat left 5px;
  background-size: 37px;
  padding-left: 47px;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 25px;
}
footer .enquire-box .enquire-box-link {
  background-color: #ffffff;
  color: #ef444d;
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 3px;
}
footer .enquire-box .enquire-box-link:hover {
  opacity: 0.9;
}
footer .copyright {
  font-size: 14px;
  text-align: right;
  margin-top: 20px;
}
footer .contact-icons .phone {
  background-image: url('../img/symbols/phone.svg');
  padding-bottom: 15px;
}
footer .contact-icons .email {
  background-image: url('../img/symbols/email.svg');
}
footer .contact-icons span {
  background-size: 24px 24px;
  background-position: left 3px;
  background-repeat: no-repeat;
  display: block;
  padding-left: 50px;
  margin-bottom: 25px;
}
footer .contact-icons span:last-child {
  margin-bottom: 0;
}
footer .contact-icons a {
  display: block;
}
@media screen and (min-width: 768px) {
  footer {
    padding-top: 70px;
    padding-bottom: 35px;
  }
  footer .row.main {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }
  footer .row.main > .col:nth-child(1) {
    width: 40%;
  }
  footer .row.main > .col:nth-child(2) {
    width: 20%;
  }
  footer .row.main > .col:nth-child(3) {
    width: 40%;
  }
  footer a {
    font-size: 16px;
  }
  footer nav {
    line-height: 37px;
  }
  footer .enquire-box {
    max-width: 100%;
  }
  footer .enquire-box .enquire-box-text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media screen and (min-width: 992px) {
  footer a {
    font-size: 20px;
  }
  footer .logo {
    max-width: 300px;
    margin-bottom: 60px;
  }
  footer nav {
    line-height: 47px;
  }
  footer .contact-icons .span {
    margin-bottom: 35px;
  }
  footer .enquire-box {
    padding: 30px;
  }
  footer .enquire-box .enquire-box-text {
    font-size: 25px;
    line-height: 34px;
    padding-left: 70px;
    background-size: 56px;
    margin-bottom: 34px;
  }
}
@media screen and (max-width: calc(768px - 1px)) {
  footer {
    position: relative;
  }
  footer .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 215px;
  }
  footer .enquire-box {
    margin: auto;
  }
  footer nav {
    margin-top: 130px;
    margin-bottom: 25px;
    font-size: 20px;
  }
  footer .contact-icons {
    border-top: 1px solid #ffffff;
    padding-top: 30px;
  }
  footer .contact-icons span {
    font-size: 20px;
  }
  footer .copyright {
    text-align: center;
    opacity: 0.6;
  }
}
.page-about main {
  padding-top: 0;
}
.page-about .intro {
  margin-bottom: 35px;
}
.page-about .intro .row.double {
  margin-top: -35px;
  padding-top: 0;
  padding-bottom: 0;
  align-items: flex-end;
}
.page-about header {
  padding-bottom: none;
}
.page-about .region-callout {
  max-width: 280px;
  margin: auto;
  padding: 25px;
  position: relative;
  color: #ffffff;
  line-height: 1.2em;
  font-size: 24px;
}
.page-about .region-callout:before {
  content: "";
  display: block;
  background: url('../img/symbols/invert.svg') left center no-repeat;
  background-size: contain;
  height: 48px;
  margin-bottom: 35px;
}
.page-about .region-callout p {
  margin-bottom: 0;
}
.page-about .region-highlight {
  position: relative;
  margin-bottom: -30px;
}
.page-about .region-highlight h2 {
  font-size: 30px;
}
.page-about .region-highlight:before {
  displaY: none;
  content: '';
  background-image: url('../img/symbols/waves.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100px;
  height: 16px;
  position: absolute;
  bottom: -40px;
}
.page-about .no-sun {
  margin-bottom: 30px;
}
.page-about .no-sun h3 {
  margin-top: 20px;
}
.page-about .decorative .decorative-wrap {
  padding-top: 49%;
  position: relative;
}
.page-about .decorative .decorative-panel,
.page-about .decorative .decorative-video {
  position: absolute;
}
.page-about .decorative .decorative-panel {
  top: 0;
  left: 7%;
  width: 55%;
  z-index: 1;
  display: none;
}
.page-about .decorative .decorative-video {
  right: 0;
  width: 100%;
  padding-top: 52.6%;
  bottom: 0;
  z-index: 3;
  overflow: hidden;
}
.page-about .decorative .decorative-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-about .decorative .decorative-video button {
  position: absolute;
  right: 17.5px;
  bottom: 17.5px;
  width: 24%;
  height: 15%;
  background-color: red;
  background-image: url('/img/symbols/play.svg');
  background-size: 25px;
  background-position: center;
  background-repeat: no-repeat;
}
.page-about .decorative .decorative-video.is-active button {
  background-image: url('/img/symbols/pause.svg');
  background-size: 18px;
}
.page-about .decorative .deco-sin {
  position: absolute;
  top: unset;
  bottom: 15%;
  left: 0;
  width: 80%;
  height: 20%;
  background-size: 50%;
  z-index: 2;
}
.page-about .sound-quality .row {
  padding-bottom: 0;
}
@media screen and (max-width: calc(768px  -  1px)) {
  .page-about .features .row {
    padding-bottom: 10px;
  }
  .page-about .features .col {
    margin-bottom: 30px;
  }
  .page-about .features .col:last-child {
    margin-bottom: 0;
  }
  .page-about .features .col p:last-child {
    margin-bottom: 0;
  }
  .page-about .region-symbol-image {
    display: none;
  }
  .page-about .link {
    display: inline-block;
    font-size: 20px;
    margin-top: 5px;
  }
}
@media screen and (min-width: 768px) {
  .page-about .intro {
    margin-bottom: 52.5px;
  }
  .page-about .region-callout {
    max-width: 100%;
    font-size: 30px;
  }
  .page-about .region-callout:before {
    background-size: contain;
    height: 85px;
    margin-bottom: 45px;
  }
  .page-about .region-callout p {
    margin-top: 20px;
  }
  .page-about .region-highlight:before {
    display: block;
  }
  .page-about .no-sun {
    margin-bottom: 0;
  }
  .page-about .no-sun .region-symbol-image {
    margin-right: 16%;
  }
  .page-about .no-sun .region-symbol-image:after {
    width: 130px;
    height: 130px;
    right: -65px;
  }
  .page-about .no-sun h3 {
    margin-top: 0;
  }
  .page-about .sound-quality .col:first-child,
  .page-about .sound-quality .col:last-child {
    padding-right: 7.7%;
  }
  .page-about .decorative .decorative-panel {
    display: block;
  }
  .page-about .decorative .decorative-video {
    width: 60%;
    padding-top: 35%;
  }
}
@media screen and (min-width: 992px) {
  .page-about main {
    padding-bottom: 0;
  }
  .page-about .intro {
    margin-bottom: 87.5px;
  }
  .page-about .intro .row.double .col:first-child {
    padding-right: 7.7%;
  }
  .page-about .region-callout {
    font-size: 36px;
  }
  .page-about .features .region-symbol {
    padding-left: 150px;
    background-position: left 30px;
  }
  .page-about .no-sun .region-symbol {
    background: transparent;
  }
  .page-about .no-sun .region-symbol-image {
    margin-right: 16%;
  }
  .page-about .no-sun .region-symbol-image:after {
    width: 172px;
    height: 172px;
    right: -87px;
  }
}
@media screen and (min-width: 1200px) {
  .page-about .intro .row.double {
    margin-top: -140px;
  }
  .page-about .region-callout {
    font-size: 40px;
    padding: 35px;
  }
}
.deco-sin {
  background: url('../img/deco/sine.png') left center repeat-x;
  height: 136px;
  width: 700px;
  z-index: 1;
  top: 257px;
  right: 50%;
  left: auto;
  -webkit-animation: sine 3s infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation: sine 3s infinite;
  -moz-animation-timing-function: linear;
}
@keyframes sine {
  0% {
    background-position: 0px  center;
  }
  100% {
    background-position: -350px center;
  }
}
@keyframes sine {
  0% {
    background-position: 0px  center;
  }
  100% {
    background-position: -350px center;
  }
}
.alt {
  background: #e0e0e0;
  padding-top: 35px;
  padding-bottom: 35px;
}
.alt h2 {
  margin-bottom: 0;
}
.alt p {
  margin-bottom: 0;
}
.alt .row .col {
  margin-bottom: 35px;
}
.alt .row .col:last-child {
  margin-bottom: 0;
}
.alt .row:first-child {
  padding-top: 0;
  padding-bottom: 0;
}
.page-specs h3 {
  color: #4e4e4e;
  margin-bottom: 22px;
}
.page-specs main {
  padding-bottom: 0;
}
.page-specs menu {
  margin: 0;
  top: 18px;
  font-size: 16px;
  line-height: 30px;
  z-index: 2;
  margin-bottom: 25px;
  padding-left: 0;
}
.page-specs menu a {
  display: block;
  color: #ef444d;
  position: relative;
}
.page-specs menu a:before {
  display: none;
  content: '';
  width: 14px;
  height: 14px;
  background-color: #ef444d;
  position: absolute;
  left: -32px;
  top: 17px;
  transform: rotate(45deg);
}
.page-specs .image-title {
  margin-bottom: 15px;
}
.page-specs .image-title .title {
  padding-right: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 0;
}
.page-specs .image-title .title span {
  font-size: 15px;
}
.page-specs .image-title.gap .image {
  padding-left: 34%;
}
.page-specs .specifications {
  position: relative;
  padding-bottom: 45.5px;
}
.page-specs .specifications .row .col {
  width: 100%;
}
.page-specs .specifications .row .col:first-child {
  max-width: 210px;
  padding-right: 35px;
}
.page-specs .specifications .row .col:last-child {
  flex-grow: 0;
}
.page-specs .specsheet {
  border-top: 1px solid #979797;
  padding-top: 45.5px;
  margin-bottom: 40px;
}
.page-specs .specsheet:last-child {
  margin-bottom: 0;
}
.page-specs .specsheet + .specsheet {
  margin-top: 35px;
}
.page-specs table {
  width: 100%;
}
.page-specs table td {
  padding: 0.35em 0;
}
.page-specs table td:first-child {
  width: 60%;
}
.page-specs table td:last-child {
  padding-left: 10%;
  width: 34%;
}
.page-specs table.invert td:first-child {
  width: 34%;
  padding-right: 35px;
}
.page-specs table.invert td:last-child {
  width: 66%;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .page-specs .menu-container {
    border-top: 1px solid #979797;
    padding-top: 32px;
  }
  .page-specs menu {
    font-size: 20px;
    line-height: 47px;
    margin-bottom: 0;
  }
  .page-specs menu .active {
    font-weight: bold;
  }
  .page-specs menu .active:before {
    display: block;
  }
  .page-specs .specifications {
    padding-bottom: 110px;
  }
  .page-specs .specifications .row {
    display: flex;
  }
  .page-specs .image-title {
    display: flex;
    margin-bottom: 15px;
  }
  .page-specs .image-title .title {
    width: 34%;
    margin-bottom: 0;
  }
  .page-specs .image-title .image {
    width: 66%;
  }
  .page-specs .image-title.gap .image {
    padding-left: 0;
  }
  .page-specs table td {
    font-size: 18px;
    line-height: 26px;
  }
}
@media screen and (min-width: 992px) {
  .page-specs .alt .region-symbol {
    background-size: 150px;
    background-position: left center;
    padding-left: 185px;
  }
  .page-specs table td {
    font-size: 20px;
    line-height: 28px;
  }
  .page-specs .specifications .row .col:first-child {
    max-width: 270px;
  }
}
@media screen and (min-width: 1200px) {
  .page-specs menu {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .alt {
    padding-top: 95px;
    padding-bottom: 70px;
  }
  .special-region-pa {
    padding-left: 40%;
    margin: 70px 0;
  }
  .special-region-pa img {
    display: block;
  }
}
.page-endorsements main {
  padding-bottom: 35px;
}
.page-endorsements blockquote {
  color: #ef444d;
  margin: 0 0 1em 0;
}
.page-endorsements blockquote p {
  margin: 0;
}
.page-endorsements cite {
  display: block;
  margin-top: 35px;
  color: #4e4e4e;
  font-style: normal;
}
.page-endorsements .triangles {
  z-index: -1;
  margin-top: 24.5px;
  margin-bottom: 10px;
}
.page-endorsements .triangles .triangle-wrap {
  position: relative;
  padding-top: 56.2%;
}
.page-endorsements .triangles .triangle {
  width: 40%;
  position: absolute;
  top: 50%;
}
.page-endorsements .triangles .triangle .deco-sin {
  width: 50%;
  height: 8%;
  background-size: 35%;
  position: absolute;
  top: unset;
  bottom: 10%;
  right: 5%;
}
.page-endorsements .triangles .triangle:nth-child(1),
.page-endorsements .triangles .triangle:nth-child(3) {
  top: 50%;
  transform: translateY(-50%);
}
.page-endorsements .triangles .triangle:nth-child(1) {
  left: 0;
}
.page-endorsements .triangles .triangle:nth-child(2) {
  width: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.page-endorsements .triangles .triangle:nth-child(3) {
  right: 0;
}
.page-endorsements .short .col:last-child {
  position: relative;
}
.page-endorsements .short .col:last-child blockquote {
  margin-bottom: 60px;
}
.page-endorsements .short .col:last-child blockquote cite {
  margin-top: 10px;
}
.page-endorsements .short .col:last-child blockquote:last-child {
  margin-bottom: 0;
}
.page-endorsements .collage {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 300px;
}
.page-endorsements .collage .collage-bg {
  width: 65%;
  position: absolute;
}
.page-endorsements .collage .collage-bg:nth-child(1) {
  left: 0;
  top: 0;
}
.page-endorsements .collage .collage-bg:nth-child(2) {
  right: 0;
  top: 22%;
}
.page-endorsements .collage .collage-bg:nth-child(3) {
  left: 0;
  top: 44%;
}
@media screen and (min-width: 768px) {
  .page-endorsements main {
    padding-bottom: 70px;
  }
  .page-endorsements blockquote {
    font-size: 20px;
    line-height: 27px;
  }
  .page-endorsements cite {
    font-size: 20px;
  }
  .page-endorsements .triangles {
    margin-top: -100px;
    margin-bottom: 45.5px;
  }
  .page-endorsements .collage {
    display: block;
  }
  .page-endorsements .short .col:first-child {
    padding-right: 7.7%;
  }
  .page-endorsements .short .col:last-child {
    padding-right: 200px;
  }
  .page-endorsements .short .col:last-child blockquote {
    margin-bottom: 45px;
  }
}
@media screen and (min-width: 992px) {
  .page-endorsements main {
    padding-bottom: 105px;
  }
  .page-endorsements .short .col:last-child {
    padding-right: 255px;
  }
  .page-endorsements .collage {
    height: 400px;
    width: 250px;
  }
  .page-endorsements .collage:nth-child(1) {
    left: 0;
    top: 0;
  }
  .page-endorsements .collage:nth-child(2) {
    right: 0;
    top: 22%;
  }
  .page-endorsements .collage:nth-child(3) {
    left: 0;
    top: 44%;
  }
}
.page-gallery {
  min-height: 1000px;
}
.gallery {
  display: none;
  position: relative;
  padding-bottom: 40px;
  overflow: hidden;
}
.gallery .title {
  position: relative;
  z-index: 2;
  padding-top: 25px;
  background: #ffffff;
}
.gallery .slides {
  background: #eee;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.gallery .slides .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-right: 100px;
  padding-left: 100px;
}
.gallery .slides img {
  width: calc(100% - 200px);
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: top;
  left: 100px;
  right: 100px;
}
.gallery .prev,
.gallery .next {
  display: inline-block;
  text-indent: -2000px;
  overflow: hidden;
  outline: 0px none !important;
  position: absolute;
  top: 41%;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  z-index: 1;
  background-size: 55px;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: margin ease-out 0.1s;
  -moz-transition: margin ease-out 0.1s;
  -ms-transition: margin ease-out 0.1s;
  -o-transition: margin ease-out 0.1s;
  transition: margin ease-out 0.1s;
}
.gallery .prev:active,
.gallery .next:active {
  opacity: 0.6;
}
.gallery .prev {
  left: 0;
  background-image: url('../img/icon/prev.svg');
}
.gallery .next {
  right: 0;
  background-image: url('../img/icon/next.svg');
}
@media screen and (max-width: 1200px) {
  .previous {
    left: 0;
  }
  .next {
    right: 0;
  }
}
@media screen and (min-width: 992px) {
  .gallery .prev:hover,
  .gallery .next:hover {
    margin: -50px -10px;
  }
}
@media screen and (max-width: 768px) {
  .gallery {
    margin-right: -20px;
    margin-left: -20px;
  }
  .gallery .title {
    margin-left: 20px;
  }
  .gallery .slides .slide {
    padding-right: 30px;
    padding-left: 30px;
  }
  .gallery .slides img {
    width: calc(100% - 60px);
    left: 30px;
    right: 30px;
  }
  .gallery .prev,
  .gallery .next {
    width: 18px;
    height: 35px;
    top: 50%;
    background-size: 18px;
  }
  .gallery .prev {
    left: 5px;
  }
  .gallery .next {
    right: 5px;
  }
}
.page-enquiries .row.triple .col {
  margin-bottom: 30px;
}
.page-enquiries .row.triple .col:first-child p {
  margin-top: 41px;
}
.page-enquiries .row.triple .col:last-child {
  margin-bottom: 0;
}
.page-enquiries .highlight {
  margin-top: 0;
  color: #ef444d;
}
.page-enquiries .alt {
  padding-top: 25px;
  padding-bottom: 25px;
}
.page-enquiries .details {
  margin-top: 40px;
  margin-bottom: 35px;
}
.page-enquiries .details p {
  margin-bottom: 0;
}
.page-enquiries .solo-icon {
  display: block;
  width: 68px;
  height: 68px;
  margin-top: 10px;
}
.page-enquiries .solo-icon.email {
  background-image: url('/img/symbols/email-bg.svg');
}
.page-enquiries .solo-icon.phone {
  background-image: url('/img/symbols/phone-bg.svg');
}
@media screen and (min-width: 768px) {
  .page-enquiries .row.triple .col:nth-child(1) {
    width: calc(38%  -  35px  /  1.5);
  }
  .page-enquiries .row.triple .col:nth-child(2) {
    width: calc(30%  -  35px  /  1.5);
  }
  .page-enquiries .row.triple .col:nth-child(3) {
    width: calc(32%  -  35px  /  1.5);
  }
  .page-enquiries .alt {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
form input,
form button {
  font-family: 'AvenirLTStd-Roman';
}
form input {
  background: white;
  border: 0px none;
  line-height: 56px;
  height: 56px;
  float: left;
  width: 100%;
  padding: 0 1em;
  border-bottom: 3px solid #e0e0e0;
}
form input::placeholder {
  color: #4e4e4e;
}
form input:focus {
  box-shadow: 0 0 1px 1px #ef444d inset;
}
form .short {
  width: 50%;
}
form .short ~ .short {
  border-left: 3px solid #e0e0e0;
}
form button {
  background: #ef444d;
  color: #ffffff;
  margin-left: auto;
  display: inherit;
  text-transform: uppercase;
  line-height: 44px;
  padding: 3px 2em 0;
  border: 0px none;
  margin: 1em 0 0;
  outline: 0px none !important;
}
form button:hover,
form button:focus,
form button:active {
  opacity: 0.8;
}
form > div {
  position: relative;
}
form > div:after {
  content: "";
  display: table;
  clear: both;
}
input:invalid {
  background: white;
}
.parsley-error {
  box-shadow: 0 0 1px 1px #ef444d inset;
}
.errors {
  display: none;
  padding: 0;
  margin: 0;
}
.errors span {
  display: block;
  position: absolute;
  margin-left: 1em;
  bottom: 2px;
  line-height: 40px;
  color: #ef444d;
}
.errors ~ .errors span {
  left: 50%;
}
/*
.fixedsticky {
	position: -webkit-sticky;
	position: -moz-sticky;
	position: -ms-sticky;
	position: -o-sticky;
	position: sticky;
}

.fixedsticky-withoutfixedfixed .fixedsticky-off,
.fixed-supported .fixedsticky-off {
	position: absolute;
}

.fixedsticky-withoutfixedfixed .fixedsticky-on,
.fixed-supported .fixedsticky-on {
	position: fixed;
}

.fixedsticky-dummy {
	display: none;
}

.fixedsticky-on + .fixedsticky-dummy {
	display: none;
}
*/
.stickem-container {
  position: relative;
}
.stickit {
  position: fixed !important;
  top: 0;
}
.stickit-end {
  bottom: 0px;
  top: auto !important;
  position: absolute;
}
@media screen and (min-width: 1200px) {
  .js-sticky {
    display: block;
  }
  .is-floating {
    position: fixed;
  }
}
